你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

IDurableEntityClient.SignalEntityAsync 方法

定义

重载

SignalEntityAsync(EntityId, String, Object, String, String)

向实体发出执行操作的信号。

SignalEntityAsync(EntityId, DateTime, String, Object, String, String)

向实体发出在指定时间执行操作的信号。

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

向实体发出执行操作的信号。

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

向实体发出执行操作的信号。

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

向实体发出在指定时间执行操作的信号。

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

向实体发出在指定时间执行操作的信号。

SignalEntityAsync(EntityId, String, Object, String, String)

Source:
IDurableEntityClient.cs

向实体发出执行操作的信号。

public System.Threading.Tasks.Task SignalEntityAsync (Microsoft.Azure.WebJobs.Extensions.DurableTask.EntityId entityId, string operationName, object operationInput = default, string taskHubName = default, string connectionName = default);
abstract member SignalEntityAsync : Microsoft.Azure.WebJobs.Extensions.DurableTask.EntityId * string * obj * string * string -> System.Threading.Tasks.Task
Public Function SignalEntityAsync (entityId As EntityId, operationName As String, Optional operationInput As Object = Nothing, Optional taskHubName As String = Nothing, Optional connectionName As String = Nothing) As Task

参数

entityId
EntityId

目标实体。

operationName
String

操作的名称。

operationInput
Object

操作的输入。

taskHubName
String

目标实体的 TaskHubName。

connectionName
String

taskHubName关联的连接字符串的名称。

返回

在消息可靠地排队时完成的任务。

适用于

SignalEntityAsync(EntityId, DateTime, String, Object, String, String)

Source:
IDurableEntityClient.cs

向实体发出在指定时间执行操作的信号。

public System.Threading.Tasks.Task SignalEntityAsync (Microsoft.Azure.WebJobs.Extensions.DurableTask.EntityId entityId, DateTime scheduledTimeUtc, string operationName, object operationInput = default, string taskHubName = default, string connectionName = default);
abstract member SignalEntityAsync : Microsoft.Azure.WebJobs.Extensions.DurableTask.EntityId * DateTime * string * obj * string * string -> System.Threading.Tasks.Task
Public Function SignalEntityAsync (entityId As EntityId, scheduledTimeUtc As DateTime, operationName As String, Optional operationInput As Object = Nothing, Optional taskHubName As String = Nothing, Optional connectionName As String = Nothing) As Task

参数

entityId
EntityId

目标实体。

scheduledTimeUtc
DateTime

开始操作的时间。

operationName
String

操作的名称。

operationInput
Object

操作的输入。

taskHubName
String

目标实体的 TaskHubName。

connectionName
String

taskHubName关联的连接字符串的名称。

返回

在消息可靠地排队时完成的任务。

适用于

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

Source:
IDurableEntityClient.cs

向实体发出执行操作的信号。

public System.Threading.Tasks.Task SignalEntityAsync<TEntityInterface> (Microsoft.Azure.WebJobs.Extensions.DurableTask.EntityId entityId, Action<TEntityInterface> operation);
abstract member SignalEntityAsync : Microsoft.Azure.WebJobs.Extensions.DurableTask.EntityId * Action<'EntityInterface> -> System.Threading.Tasks.Task
Public Function SignalEntityAsync(Of TEntityInterface) (entityId As EntityId, operation As Action(Of TEntityInterface)) As Task

类型参数

TEntityInterface

实体接口。

参数

entityId
EntityId

目标实体。

operation
Action<TEntityInterface>

对实体执行所需操作的委托。

返回

在消息可靠地排队时完成的任务。

适用于

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

Source:
IDurableEntityClient.cs

向实体发出执行操作的信号。

public System.Threading.Tasks.Task SignalEntityAsync<TEntityInterface> (string entityKey, Action<TEntityInterface> operation);
abstract member SignalEntityAsync : string * Action<'EntityInterface> -> System.Threading.Tasks.Task
Public Function SignalEntityAsync(Of TEntityInterface) (entityKey As String, operation As Action(Of TEntityInterface)) As Task

类型参数

TEntityInterface

实体接口。

参数

entityKey
String

目标实体键。

operation
Action<TEntityInterface>

对实体执行所需操作的委托。

返回

在消息可靠地排队时完成的任务。

适用于

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

Source:
IDurableEntityClient.cs

向实体发出在指定时间执行操作的信号。

public System.Threading.Tasks.Task SignalEntityAsync<TEntityInterface> (Microsoft.Azure.WebJobs.Extensions.DurableTask.EntityId entityId, DateTime scheduledTimeUtc, Action<TEntityInterface> operation);
abstract member SignalEntityAsync : Microsoft.Azure.WebJobs.Extensions.DurableTask.EntityId * DateTime * Action<'EntityInterface> -> System.Threading.Tasks.Task
Public Function SignalEntityAsync(Of TEntityInterface) (entityId As EntityId, scheduledTimeUtc As DateTime, operation As Action(Of TEntityInterface)) As Task

类型参数

TEntityInterface

实体接口。

参数

entityId
EntityId

目标实体。

scheduledTimeUtc
DateTime

开始操作的时间。

operation
Action<TEntityInterface>

对实体执行所需操作的委托。

返回

在消息可靠地排队时完成的任务。

适用于

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

Source:
IDurableEntityClient.cs

向实体发出在指定时间执行操作的信号。

public System.Threading.Tasks.Task SignalEntityAsync<TEntityInterface> (string entityKey, DateTime scheduledTimeUtc, Action<TEntityInterface> operation);
abstract member SignalEntityAsync : string * DateTime * Action<'EntityInterface> -> System.Threading.Tasks.Task
Public Function SignalEntityAsync(Of TEntityInterface) (entityKey As String, scheduledTimeUtc As DateTime, operation As Action(Of TEntityInterface)) As Task

类型参数

TEntityInterface

实体接口。

参数

entityKey
String

目标实体键。

scheduledTimeUtc
DateTime

开始操作的时间。

operation
Action<TEntityInterface>

对实体执行所需操作的委托。

返回

在消息可靠地排队时完成的任务。

适用于