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

ServiceReplicaListener 构造函数

定义

初始化 ServiceReplicaListener 类的新实例。

public ServiceReplicaListener (Func<System.Fabric.StatefulServiceContext,Microsoft.ServiceFabric.Services.Communication.Runtime.ICommunicationListener> createCommunicationListener, string name = "", bool listenOnSecondary = false);
new Microsoft.ServiceFabric.Services.Communication.Runtime.ServiceReplicaListener : Func<System.Fabric.StatefulServiceContext, Microsoft.ServiceFabric.Services.Communication.Runtime.ICommunicationListener> * string * bool -> Microsoft.ServiceFabric.Services.Communication.Runtime.ServiceReplicaListener
Public Sub New (createCommunicationListener As Func(Of StatefulServiceContext, ICommunicationListener), Optional name As String = "", Optional listenOnSecondary As Boolean = false)

参数

createCommunicationListener
Func<StatefulServiceContext,ICommunicationListener>

用于创建通信侦听器的工厂方法

name
String

通信侦听器的名称。 如果服务只有一个通信侦听器,则此参数是可选的

listenOnSecondary
Boolean

指定当副本 (replica) 变为活动辅助时是否需要打开通信侦听器。 THis 参数是可选的

适用于