次の方法で共有


IDurableEntityContext.SignalEntity メソッド

定義

オーバーロード

SignalEntity(EntityId, String, Object)

応答を待たずに、操作を実行するようにエンティティに通知します。 結果または例外は無視されます (起動と忘れ)。

SignalEntity(EntityId, DateTime, String, Object)

指定した時刻に操作を実行するようにエンティティに通知します。 結果または例外は無視されます (起動と忘れ)。

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

操作を実行するようにエンティティに通知します。

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

操作を実行するようにエンティティに通知します。

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

指定した時刻に操作を実行するようにエンティティに通知します。

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

指定した時刻に操作を実行するようにエンティティに通知します。

SignalEntity(EntityId, String, Object)

ソース:
IDurableEntityContext.cs

応答を待たずに、操作を実行するようにエンティティに通知します。 結果または例外は無視されます (起動と忘れ)。

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)

パラメーター

entity
EntityId

ターゲット エンティティ。

operationName
String

操作の名前。

operationInput
Object

操作の入力。

適用対象

SignalEntity(EntityId, DateTime, String, Object)

ソース:
IDurableEntityContext.cs

指定した時刻に操作を実行するようにエンティティに通知します。 結果または例外は無視されます (起動と忘れ)。

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)

パラメーター

entity
EntityId

ターゲット エンティティ。

scheduledTimeUtc
DateTime

操作を開始する時刻。

operationName
String

操作の名前。

operationInput
Object

操作の入力。

適用対象

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

ソース:
IDurableEntityContext.cs

操作を実行するようにエンティティに通知します。

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))

型パラメーター

TEntityInterface

エンティティ インターフェイス。

パラメーター

entityId
EntityId

ターゲット エンティティ。

operation
Action<TEntityInterface>

エンティティに対して目的の操作を実行するデリゲート。

適用対象

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

ソース:
IDurableEntityContext.cs

操作を実行するようにエンティティに通知します。

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))

型パラメーター

TEntityInterface

エンティティ インターフェイス。

パラメーター

entityKey
String

ターゲット エンティティ キー。

operation
Action<TEntityInterface>

エンティティに対して目的の操作を実行するデリゲート。

適用対象

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

ソース:
IDurableEntityContext.cs

指定した時刻に操作を実行するようにエンティティに通知します。

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))

型パラメーター

TEntityInterface

エンティティ インターフェイス。

パラメーター

entityId
EntityId

ターゲット エンティティ。

scheduledTimeUtc
DateTime

操作を開始する時刻。

operation
Action<TEntityInterface>

エンティティに対して目的の操作を実行するデリゲート。

適用対象

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

ソース:
IDurableEntityContext.cs

指定した時刻に操作を実行するようにエンティティに通知します。

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))

型パラメーター

TEntityInterface

エンティティ インターフェイス。

パラメーター

entityKey
String

ターゲット エンティティ キー。

scheduledTimeUtc
DateTime

操作を開始する時刻。

operation
Action<TEntityInterface>

エンティティに対して目的の操作を実行するデリゲート。

適用対象