コード例 #1
0
ファイル: Worker.cs プロジェクト: vishal-h/EventStore-1
 public void Start()
 {
     _lastReconnectionTimestamp = DateTime.UtcNow;
     _connection = _coordinator.CreateConnection(OnPackageArrived, OnConnectionEstablished, OnConnectionClosed);
     _timeoutCheckStopwatch.Start();
     _stoppedEvent.Reset();
     _thread.Start();
 }