IDurableOrchestrationContext.SignalEntity Method

Definition

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)

Source:
IDurableOrchestrationContext.cs

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)

Source:
IDurableOrchestrationContext.cs

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