コード例 #1
0
ファイル: SingleRunMethod.cs プロジェクト: jonishzx/Clover
 public SingleRunMethod(TAction <object> watchHandler, int timerInterval)
 {
     m_timer        = new System.Threading.Timer(new TimerCallback(OnTimer), null, Timeout.Infinite, Timeout.Infinite);
     _timeoutmillis = timerInterval;
     _methodHandler = watchHandler;
 }
コード例 #2
0
 public static IObservable <(TAction action, CancelEventArgs e)> WhenExecuting <TAction>(this TAction action) where TAction : ActionBase
コード例 #3
0
ファイル: SingleRunMethod.cs プロジェクト: jonishzx/Clover
 public SingleRunMethod(TAction <object> watchHandler) : this(watchHandler, 100)
 {
 }