TemporaryMQTTClient 추가

This commit is contained in:
wsh
2025-05-24 11:18:34 +09:00
parent 55f23c9f03
commit 370b40ce88
12 changed files with 576 additions and 41 deletions

View File

@@ -7,6 +7,7 @@ using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading;
using UnityEngine;
namespace Best.HTTP.Shared.Databases
{
@@ -212,8 +213,12 @@ namespace Best.HTTP.Shared.Databases
return true;
using (var fileStream = HTTPManager.IOService.CreateFileStream(this.MetadataFileName, Best.HTTP.Shared.PlatformSupport.FileSystem.FileStreamModes.Create))
using (var stream = new BufferedStream(fileStream))
this.MetadataService.SaveTo(stream);
{
using (var stream = new BufferedStream(fileStream))
{
this.MetadataService.SaveTo(stream);
}
}
if (this.Options.UseHashFile)
{

View File

@@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.IO;
using Best.HTTP.Shared.Databases.MetadataIndexFinders;
using UnityEngine;
namespace Best.HTTP.Shared.Databases
{

View File

@@ -110,7 +110,7 @@ namespace Best.HTTP.Shared.Extensions
}
catch (Exception ex)
{
HTTPManager.Logger.Exception("HeartbeatManager", heartbeat.GetType().Name, ex, null);
HTTPManager.Logger.Exception("HeartbeatManager@", heartbeat.GetType().Name, ex, null);
}
}
}