IDurableOrchestrationContext.SignalEntity メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
SignalEntity(EntityId, String, Object) |
応答を待たずに操作を実行するようにエンティティに通知します。 結果または例外は無視されます (起動して忘れます)。 |
SignalEntity(EntityId, DateTime, String, Object) |
指定した時刻にエンティティによって実行される操作を通知します。 結果または例外は無視されます (起動して忘れます)。 |
SignalEntity(EntityId, String, Object)
応答を待たずに操作を実行するようにエンティティに通知します。 結果または例外は無視されます (起動して忘れます)。
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)
指定した時刻にエンティティによって実行される操作を通知します。 結果または例外は無視されます (起動して忘れます)。
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
操作の入力。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Azure SDK for .NET