C# Class CqlSharp.Threading.AutoConfiguredAwaiter

Awaiter that automatically determines how awaits need to be continued
ファイルを表示 Open project: reuzel/CqlSharp Class Usage Examples

Public Methods

Method Description
GetResult ( ) : void

Gets the result.

OnCompleted ( System.Action continuation ) : void

Schedules the continuation action that's invoked when the instance completes.

Private Methods

Method Description
AutoConfiguredAwaiter ( System.Threading.Tasks.Task task ) : System
UnsafeOnCompleted ( System.Action continuation ) : void

Method Details

GetResult() public method

Gets the result.
public GetResult ( ) : void
return void

OnCompleted() public method

Schedules the continuation action that's invoked when the instance completes.
/// The argument is null (Nothing in /// Visual Basic). ///
public OnCompleted ( System.Action continuation ) : void
continuation System.Action The action to invoke when the operation completes.
return void