|
@@ -8,6 +8,7 @@ using System.Linq;
|
|
|
using WingServerCommon.Log;
|
|
|
using CSScriptLib;
|
|
|
using System.Reflection;
|
|
|
+using WingInterfaceLibrary.LiveConsultation;
|
|
|
|
|
|
namespace WingCloudServer.InteractionCenter
|
|
|
{
|
|
@@ -22,6 +23,7 @@ namespace WingCloudServer.InteractionCenter
|
|
|
_opLogDBService = GetProxy<IOpLogDBService>();
|
|
|
_distributedServerInfoDBService = GetProxy<IDistributedServerInfoDBService>();
|
|
|
_liveRoomDBService = GetProxy<ILiveRoomDBService>();
|
|
|
+ _liveConsultationService = GetProxy<ILiveConsultationService>();
|
|
|
_serverUrlMap = new Dictionary<string, string>();
|
|
|
}
|
|
|
|
|
@@ -117,7 +119,7 @@ namespace WingCloudServer.InteractionCenter
|
|
|
var syncCompleteOpLogsRequest = new SyncCompleteOpLogsRequest { Oplogs = request.Oplogs };
|
|
|
await _opLogDBService.SyncCompleteOpLogsAsync(syncCompleteOpLogsRequest);
|
|
|
}
|
|
|
- //调用manager
|
|
|
+ await _liveConsultationService.SyncServerMessageAsync(request);
|
|
|
|
|
|
return true;
|
|
|
}
|