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

ICommunicationClientFactory<TCommunicationClient> 接口

定义

定义必须实现的接口,以便为通信客户端提供工厂,以便与 Service Fabric 服务通信。

public interface ICommunicationClientFactory<TCommunicationClient> where TCommunicationClient : ICommunicationClient
type ICommunicationClientFactory<'CommunicationClient (requires 'CommunicationClient :> ICommunicationClient)> = interface
Public Interface ICommunicationClientFactory(Of TCommunicationClient)

类型参数

TCommunicationClient

通信客户端的类型

派生

方法

GetClientAsync(ResolvedServicePartition, TargetReplicaSelector, String, OperationRetrySettings, CancellationToken)

重新解析包含一个或多个通信侦听器的指定服务的分区,并返回一个客户端以与给定 listenerName 对应的终结点通信。

服务的终结点采用以下形式: {“Endpoints”:{“Listener1”:“Endpoint1”,“Listener2”:“Endpoint2” ...}}

GetClientAsync(Uri, ServicePartitionKey, TargetReplicaSelector, String, OperationRetrySettings, CancellationToken)

解析包含一个或多个通信侦听器的指定服务的分区,并返回一个客户端以与给定侦听器名称对应的终结点通信。

服务的终结点采用以下形式: {“Endpoints”:{“Listener1”:“Endpoint1”,“Listener2”:“Endpoint2” ...}}

ReportOperationExceptionAsync(TCommunicationClient, ExceptionInformation, OperationRetrySettings, CancellationToken)

处理向服务发送消息时在 CommunicationClient 中发生的异常

事件

ClientConnected

通信客户端连接到服务终结点时触发的事件处理程序。

ClientDisconnected

当通信客户端与服务终结点断开连接时触发的事件处理程序。

适用于