You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
762 B
31 lines
762 B
1 day ago
|
using CoreAgent.Domain.Interfaces.CustomWSClient;
|
||
|
using CoreAgent.Domain.Interfaces.ProtocolLogHandlers;
|
||
|
using CoreAgent.Infrastructure.Services.CustomWSClient;
|
||
|
using Microsoft.Extensions.Logging;
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace CoreAgent.Infrastructure.Services.ProtocolLogHandlers
|
||
|
{
|
||
|
public class ProtocolRanHandleLogs : CustomWebSocketClient, IProtocollHandleLogs
|
||
|
{
|
||
|
protected ProtocolRanHandleLogs(ILogger logger, string serverUrl, ICustomMessageHandler messageHandler) : base(logger, serverUrl, messageHandler)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public void RunStart()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public void RunStop()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|