Пример #1
0
 public ConnectionManager(AvventoAPI _avventoApi, ReceiveHandlerImplementation rhi, SessionManager session)
 {
     this.rhi         = rhi;
     this._avventoApi = _avventoApi;
     this.session     = session;
 }
 public ReceiveHandlerImplementation(AvventoAPI _avventoApi)
 {
     this._avventoApi = _avventoApi;
     receiveThread    = new Thread(Handler);
 }