コード例 #1
0
ファイル: ServiceHost.cs プロジェクト: gregorypilar/interlace
        public ServiceHost()
        {
            _defaultEnvironment = new Dictionary<string, object>();

            _stateRequestEvent = new ManualResetEvent(false);

            _reactor = new Reactor();
            _reactor.ReactorException += new EventHandler<ServiceExceptionEventArgs>(_reactor_ReactorException);
        }
コード例 #2
0
 public StreamSocketClientConnector(Reactor reactor)
 {
     _reactor = reactor;
 }
コード例 #3
0
 public DatagramSocketConnector(Reactor reactor)
 {
     _reactor = reactor;
 }