17 lines
338 B
C#
17 lines
338 B
C#
using JiShe.CollectBus.Protocol.Contracts.Models;
|
|
using TouchSocket.Sockets;
|
|
|
|
namespace JiShe.CollectBus.Protocol.Contracts.Interfaces
|
|
{
|
|
public interface IProtocolPlugin
|
|
{
|
|
ProtocolInfo Get();
|
|
|
|
void Load();
|
|
|
|
void Received(ITcpSessionClient client, ReceivedDataEventArgs e);
|
|
|
|
void Send();
|
|
}
|
|
}
|