DurableOrchestrationContext.WaitForExternalEvent Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
WaitForExternalEvent<T>(String) | |
WaitForExternalEvent<T>(String, TimeSpan) | |
WaitForExternalEvent<T>(String, TimeSpan, T) |
WaitForExternalEvent<T>(String)
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)
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)
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for .NET