C# Class DotNetWorkQueue.Queue.QueueWaitNoOp

A "no wait" strategy for queue waits
Inheritance: IQueueWait, INoOperation
Exibir arquivo Open project: blehnen/DotNetWorkQueue

Public Methods

Method Description
Reset ( ) : void

Resets the wait time back to the start.

Wait ( ) : void

Waits until the next wait time has expired

Wait ( Action waitTime ) : void

Waits until the specified time span has been reached.

Method Details

Reset() public method

Resets the wait time back to the start.
public Reset ( ) : void
return void

Wait() public method

Waits until the next wait time has expired
public Wait ( ) : void
return void

Wait() public method

Waits until the specified time span has been reached.
public Wait ( Action waitTime ) : void
waitTime Action The how long the wait will last.
return void