internal void SetupRequest(MutableSessionCollection value)
 {
     _sessionCollection = value;
 }
Esempio n. 2
0
 protected void ServerStarted(TConnectionCollection connectionCollection)
 {
     _mutableSessions = _sessionsFactory.Create(connectionCollection);
     Executor         = _executorFactory.Create(_mutableSessions);
     Dispatcher.Subscribe((IResponseReceiver <TResponse>)Executor);
 }