C# Class LinqToDelicious.Delayer

Inheritance: IDelayer
Show file Open project: maravillas/linq-to-delicious Class Usage Examples

Public Methods

Method Description
Delay ( Callback callback ) : object

Suspends the current thread by the previously specified length of time, and executes the specified callback when finished.

Delayer ( int delay ) : System

Creates a new Delayer.

Method Details

Delay() public method

Suspends the current thread by the previously specified length of time, and executes the specified callback when finished.
public Delay ( Callback callback ) : object
callback Callback The Callback to be executed when the delay is complete.
return object

Delayer() public method

Creates a new Delayer.
public Delayer ( int delay ) : System
delay int
return System