Example #1
0
 public ServerTransport(Uri addr, AcceptorFactory acceptorFactory)
     : base(addr, null)
 {
     setSocket(null);
     this.acceptorFactory = acceptorFactory;
     this.socketFactory = acceptorFactory;
 }
 public ServerClientTransport(Uri addr, ServerTransport server, AcceptorFactory factory)
     : base(addr, factory)
 {
     this.factory = factory;
     this.serverTransport = server;
 }
Example #3
0
 public TransportFactory()
 {
     conFactory = new ConnectorFactory(writerStorage, this);
     acpFactory = new AcceptorFactory(writerStorage, this);
     startAsyncDispatchers();
 }
Example #4
0
 public ServerTransport(Uri addr, AcceptorFactory acceptorFactory) : base(addr, null)
 {
     setSocket(null);
     this.acceptorFactory = acceptorFactory;
     this.socketFactory   = acceptorFactory;
 }
Example #5
0
 public TransportFactory()
 {
     conFactory = new ConnectorFactory(writerStorage, this);
     acpFactory = new AcceptorFactory(writerStorage, this);
     startAsyncDispatchers();
 }
 public ServerClientTransport(Uri addr, ServerTransport server, AcceptorFactory factory) : base(addr, factory)
 {
     this.factory         = factory;
     this.serverTransport = server;
 }