提交 dbfb5a9b 编写于 作者: 若汝棋茗

更新demo

上级 28bddec3
......@@ -61,6 +61,7 @@ namespace AdapterConsoleApp
service.Setup(new TouchSocketConfig()//载入配置
.SetListenIPHosts(new IPHost[] { new IPHost("127.0.0.1:7789"), new IPHost(7790) })//同时监听两个地址
.SetMaxCount(10000)
.SetDataHandlingAdapter(()=> { return new MyCustomBetweenAndDataHandlingAdapter(); })
.SetThreadCount(10))
.Start();//启动
}
......
......@@ -44,4 +44,13 @@ namespace PluginConsoleApp
return a + b;
}
}
class MyPlugin : TcpPluginBase
{
protected override void OnConnecting(ITcpClientBase client, ClientOperationEventArgs e)
{
client.SetDataHandlingAdapter(new NormalDataHandlingAdapter());
base.OnConnecting(client, e);
}
}
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册