IDurableEntityContext.SignalEntity Methode

Definition

Überlädt

SignalEntity(EntityId, String, Object)

Signalisiert einer Entität, einen Vorgang auszuführen, ohne auf eine Antwort zu warten. Alle Ergebnisse oder Ausnahmen werden ignoriert (feuern und vergessen).

SignalEntity(EntityId, DateTime, String, Object)

Signalisiert einer Entität, einen Vorgang zu einem angegebenen Zeitpunkt auszuführen. Alle Ergebnisse oder Ausnahmen werden ignoriert (feuern und vergessen).

SignalEntity<TEntityInterface>(EntityId, Action<TEntityInterface>)

Signalisiert einer Entität, einen Vorgang auszuführen.

SignalEntity<TEntityInterface>(String, Action<TEntityInterface>)

Signalisiert einer Entität, einen Vorgang auszuführen.

SignalEntity<TEntityInterface>(EntityId, DateTime, Action<TEntityInterface>)

Signalisiert einer Entität, einen Vorgang zu einem angegebenen Zeitpunkt auszuführen.

SignalEntity<TEntityInterface>(String, DateTime, Action<TEntityInterface>)

Signalisiert einer Entität, einen Vorgang zu einem angegebenen Zeitpunkt auszuführen.

SignalEntity(EntityId, String, Object)

Quelle:
IDurableEntityContext.cs

Signalisiert einer Entität, einen Vorgang auszuführen, ohne auf eine Antwort zu warten. Alle Ergebnisse oder Ausnahmen werden ignoriert (feuern und vergessen).

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)

Parameter

entity
EntityId

Die Zielentität.

operationName
String

Der Name des Vorgangs.

operationInput
Object

Die Vorgangseingabe.

Gilt für:

SignalEntity(EntityId, DateTime, String, Object)

Quelle:
IDurableEntityContext.cs

Signalisiert einer Entität, einen Vorgang zu einem angegebenen Zeitpunkt auszuführen. Alle Ergebnisse oder Ausnahmen werden ignoriert (feuern und vergessen).

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)

Parameter

entity
EntityId

Die Zielentität.

scheduledTimeUtc
DateTime

Der Zeitpunkt, zu dem der Vorgang gestartet werden soll.

operationName
String

Der Name des Vorgangs.

operationInput
Object

Die Eingabe für den Vorgang.

Gilt für:

SignalEntity<TEntityInterface>(EntityId, Action<TEntityInterface>)

Quelle:
IDurableEntityContext.cs

Signalisiert einer Entität, einen Vorgang auszuführen.

public void SignalEntity<TEntityInterface> (Microsoft.Azure.WebJobs.Extensions.DurableTask.EntityId entityId, Action<TEntityInterface> operation);
abstract member SignalEntity : Microsoft.Azure.WebJobs.Extensions.DurableTask.EntityId * Action<'EntityInterface> -> unit
Public Sub SignalEntity(Of TEntityInterface) (entityId As EntityId, operation As Action(Of TEntityInterface))

Typparameter

TEntityInterface

Entitätsschnittstelle.

Parameter

entityId
EntityId

Die Zielentität.

operation
Action<TEntityInterface>

Ein Delegat, der den gewünschten Vorgang für die Entität ausführt.

Gilt für:

SignalEntity<TEntityInterface>(String, Action<TEntityInterface>)

Quelle:
IDurableEntityContext.cs

Signalisiert einer Entität, einen Vorgang auszuführen.

public void SignalEntity<TEntityInterface> (string entityKey, Action<TEntityInterface> operation);
abstract member SignalEntity : string * Action<'EntityInterface> -> unit
Public Sub SignalEntity(Of TEntityInterface) (entityKey As String, operation As Action(Of TEntityInterface))

Typparameter

TEntityInterface

Entitätsschnittstelle.

Parameter

entityKey
String

Der Zielentitätsschlüssel.

operation
Action<TEntityInterface>

Ein Delegat, der den gewünschten Vorgang für die Entität ausführt.

Gilt für:

SignalEntity<TEntityInterface>(EntityId, DateTime, Action<TEntityInterface>)

Quelle:
IDurableEntityContext.cs

Signalisiert einer Entität, einen Vorgang zu einem angegebenen Zeitpunkt auszuführen.

public void SignalEntity<TEntityInterface> (Microsoft.Azure.WebJobs.Extensions.DurableTask.EntityId entityId, DateTime scheduledTimeUtc, Action<TEntityInterface> operation);
abstract member SignalEntity : Microsoft.Azure.WebJobs.Extensions.DurableTask.EntityId * DateTime * Action<'EntityInterface> -> unit
Public Sub SignalEntity(Of TEntityInterface) (entityId As EntityId, scheduledTimeUtc As DateTime, operation As Action(Of TEntityInterface))

Typparameter

TEntityInterface

Entitätsschnittstelle.

Parameter

entityId
EntityId

Die Zielentität.

scheduledTimeUtc
DateTime

Der Zeitpunkt, zu dem der Vorgang gestartet werden soll.

operation
Action<TEntityInterface>

Ein Delegat, der den gewünschten Vorgang für die Entität ausführt.

Gilt für:

SignalEntity<TEntityInterface>(String, DateTime, Action<TEntityInterface>)

Quelle:
IDurableEntityContext.cs

Signalisiert einer Entität, einen Vorgang zu einem angegebenen Zeitpunkt auszuführen.

public void SignalEntity<TEntityInterface> (string entityKey, DateTime scheduledTimeUtc, Action<TEntityInterface> operation);
abstract member SignalEntity : string * DateTime * Action<'EntityInterface> -> unit
Public Sub SignalEntity(Of TEntityInterface) (entityKey As String, scheduledTimeUtc As DateTime, operation As Action(Of TEntityInterface))

Typparameter

TEntityInterface

Entitätsschnittstelle.

Parameter

entityKey
String

Der Zielentitätsschlüssel.

scheduledTimeUtc
DateTime

Der Zeitpunkt, zu dem der Vorgang gestartet werden soll.

operation
Action<TEntityInterface>

Ein Delegat, der den gewünschten Vorgang für die Entität ausführt.

Gilt für: