24 lines
748 B
C#
Raw Normal View History

2024-10-25 19:11:43 +08:00
using JiShe.CollectBus.Common.Extensions.DependencyInjections;
using JiShe.CollectBus.Protocol.Contracts.Abstracts;
2024-10-08 14:41:41 +08:00
using JiShe.CollectBus.Protocol.Contracts.Attributes;
using JiShe.CollectBus.Protocol.Contracts.Models;
using Microsoft.Extensions.Caching.Distributed;
2024-10-12 23:42:15 +08:00
using TouchSocket.Sockets;
2024-10-08 14:41:41 +08:00
namespace JiShe.CollectBus.Protocol.Test
{
2024-10-08 15:06:08 +08:00
[ProtocolName("TestProtocol")]
2024-10-28 16:23:39 +08:00
public class TestProtocolPlugin : BaseProtocolPlugin, ISingletonDependency
2024-10-08 14:41:41 +08:00
{
2024-10-25 19:11:43 +08:00
public override Task<ProtocolInfo> GetAsync()
2024-10-08 14:41:41 +08:00
{
2024-10-25 19:11:43 +08:00
throw new NotImplementedException();
2024-10-08 14:41:41 +08:00
}
2024-10-28 16:23:39 +08:00
public override Task AnalyzeAsync(MessageReceivedEvent messageReceivedEvent)
2024-10-08 14:41:41 +08:00
{
throw new NotImplementedException();
}
}
}