IDurableOrchestrationContext.SignalEntity 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
SignalEntity(EntityId, String, Object) |
Signals an entity to perform an operation, without waiting for a response. Any result or exception is ignored (fire and forget). |
SignalEntity(EntityId, DateTime, String, Object) |
Signals an operation to be performed by an entity at a specified time. Any result or exception is ignored (fire and forget). |
SignalEntity(EntityId, String, Object)
Signals an entity to perform an operation, without waiting for a response. Any result or exception is ignored (fire and forget).
public void SignalEntity (Microsoft.Azure.WebJobs.Extensions.DurableTask.EntityId entity, string operationName, object operationInput = default);
abstract member SignalEntity : Microsoft.Azure.WebJobs.Extensions.DurableTask.EntityId * string * obj -> unit
Public Sub SignalEntity (entity As EntityId, operationName As String, Optional operationInput As Object = Nothing)
Parameters
- entity
- EntityId
The target entity.
- operationName
- String
The name of the operation.
- operationInput
- Object
The input for the operation.
Applies to
SignalEntity(EntityId, DateTime, String, Object)
Signals an operation to be performed by an entity at a specified time. Any result or exception is ignored (fire and forget).
public void SignalEntity (Microsoft.Azure.WebJobs.Extensions.DurableTask.EntityId entity, DateTime scheduledTimeUtc, string operationName, object operationInput = default);
abstract member SignalEntity : Microsoft.Azure.WebJobs.Extensions.DurableTask.EntityId * DateTime * string * obj -> unit
Public Sub SignalEntity (entity As EntityId, scheduledTimeUtc As DateTime, operationName As String, Optional operationInput As Object = Nothing)
Parameters
- entity
- EntityId
The target entity.
- scheduledTimeUtc
- DateTime
The time at which to start the operation.
- operationName
- String
The name of the operation.
- operationInput
- Object
The input for the operation.
Applies to
Azure SDK for .NET