Partager via


DurableOrchestrationContext.WaitForExternalEvent Méthode

Définition

Surcharges

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)

Paramètres de type

T

Paramètres

name
String

Retours

Task<T>

S’applique à

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)

Paramètres de type

T

Paramètres

name
String
timeout
TimeSpan

Retours

Task<T>

S’applique à

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)

Paramètres de type

T

Paramètres

name
String
timeout
TimeSpan
defaultValue
T

Retours

Task<T>

S’applique à