Share via


DurableOrchestrationContext.WaitForExternalEvent Method

Definition

Overloads

WaitForExternalEvent<T>(String)
WaitForExternalEvent<T>(String, TimeSpan)
WaitForExternalEvent<T>(String, TimeSpan, T)

WaitForExternalEvent<T>(String)

Source:
DurableOrchestrationContext.cs
public override System.Threading.Tasks.Task<T> WaitForExternalEvent<T> (string name);
override this.WaitForExternalEvent : string -> System.Threading.Tasks.Task<'T>
Public Overrides Function WaitForExternalEvent(Of T) (name As String) As Task(Of T)

Type Parameters

T

Parameters

name
String

Returns

Task<T>

Applies to

WaitForExternalEvent<T>(String, TimeSpan)

Source:
DurableOrchestrationContext.cs
public override System.Threading.Tasks.Task<T> WaitForExternalEvent<T> (string name, TimeSpan timeout);
override this.WaitForExternalEvent : string * TimeSpan -> System.Threading.Tasks.Task<'T>
Public Overrides Function WaitForExternalEvent(Of T) (name As String, timeout As TimeSpan) As Task(Of T)

Type Parameters

T

Parameters

name
String
timeout
TimeSpan

Returns

Task<T>

Applies to

WaitForExternalEvent<T>(String, TimeSpan, T)

Source:
DurableOrchestrationContext.cs
public override System.Threading.Tasks.Task<T> WaitForExternalEvent<T> (string name, TimeSpan timeout, T defaultValue);
override this.WaitForExternalEvent : string * TimeSpan * 'T -> System.Threading.Tasks.Task<'T>
Public Overrides Function WaitForExternalEvent(Of T) (name As String, timeout As TimeSpan, defaultValue As T) As Task(Of T)

Type Parameters

T

Parameters

name
String
timeout
TimeSpan
defaultValue
T

Returns

Task<T>

Applies to