コード例 #1
0
ファイル: OperatorCtrlBase.cs プロジェクト: haiyangIt/Haiyang
 public TimeOutOperatorCtrl(OperatorCtrlBase other, string operationName)
     : base(other, operationName)
 {
 }
コード例 #2
0
ファイル: OperatorCtrlBase.cs プロジェクト: haiyangIt/Haiyang
 public OperatorCtrlBase(OperatorCtrlBase other, string operationName)
 {
     _other = other;
     _operationName = operationName;
     _threadDataInformation = ThreadData.Information;
 }
コード例 #3
0
ファイル: OperatorCtrlBase.cs プロジェクト: haiyangIt/Haiyang
 public RetryOperator(OperatorCtrlBase other, string operationName, Action beforeRun, Action<Exception> afterFail)
     : base(other, operationName)
 {
     _afterFail = afterFail;
     _beforeRun = beforeRun;
 }