Exemplo n.º 1
0
 public InternalRxSession(IInternalAsyncSession session, IRxRetryLogic retryLogic)
 {
     _session    = session;
     _retryLogic = retryLogic;
 }
Exemplo n.º 2
0
 public InternalSession(IInternalAsyncSession session, IRetryLogic retryLogic, BlockingExecutor executor)
 {
     _session    = session ?? throw new ArgumentNullException(nameof(session));
     _retryLogic = retryLogic ?? throw new ArgumentNullException(nameof(retryLogic));
     _executor   = executor ?? throw new ArgumentNullException(nameof(executor));
 }