TemporaryMQTTClient 추가
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
@@ -3,6 +3,7 @@ using System.Collections.Generic;
|
||||
using System.IO;
|
||||
|
||||
using Best.HTTP.Shared.Databases.MetadataIndexFinders;
|
||||
using UnityEngine;
|
||||
|
||||
namespace Best.HTTP.Shared.Databases
|
||||
{
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user