Concurrency WebSocket和RX

Concurrency WebSocket和RX,concurrency,websocket,system.reactive,Concurrency,Websocket,System.reactive,限制了并发连接的数量。即便如此,我还是想和多个客户打交道。也许Rx可以用来处理订阅。您将如何做到这一点?我认为WCF允许您更改最大连接数: 如果您使用的是NetTcpBinding,则可以设置最大连接数: int maxNumConnections = 100; // Set the maximum number of connections for your tcp binding binding.MaxConnections = maxNumConnections; 我认为WCF允许您

限制了并发连接的数量。即便如此,我还是想和多个客户打交道。也许Rx可以用来处理订阅。您将如何做到这一点?

我认为WCF允许您更改最大连接数:

如果您使用的是NetTcpBinding,则可以设置最大连接数:

int maxNumConnections = 100; 

// Set the maximum number of connections for your tcp binding
binding.MaxConnections = maxNumConnections;

我认为WCF允许您更改最大连接数:

如果您使用的是NetTcpBinding,则可以设置最大连接数:

int maxNumConnections = 100; 

// Set the maximum number of connections for your tcp binding
binding.MaxConnections = maxNumConnections;