public DelayedContext(TimeSpan delay, IProcessRunner processRunner, ActionProcess actionProcess) { this._delay = delay; this._actionProcess = actionProcess; this._processRunner = processRunner; this._ellapsedMilliseconds = 0; }
public DelayHelper(Int32 delayValue, IProcessRunner processRunner) { this.Process = new ActionProcess(); this._processRunner = processRunner; this._delayValue = delayValue; }