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.

22 lines
632 B

using CoreAgent.ProtocolClient.Models;
namespace CoreAgent.ProtocolClient.Interfaces
{
/// <summary>
/// 协议WebSocket客户端管理器接口
/// 负责启动和停止所有协议客户端
/// </summary>
public interface IProtocolWsClientManager : IDisposable
{
/// <summary>
/// 启动所有协议客户端
/// </summary>
/// <param name="configs">协议客户端配置数组</param>
void StartAllClients(ProtocolClientConfig[] configs);
/// <summary>
/// 停止所有协议客户端
/// </summary>
void StopAllClients();
}
}