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

ICommunicationListener 接口

定义

为 Service Fabric 服务的通信侦听器定义基接口和状态机协定。

public interface ICommunicationListener
type ICommunicationListener = interface
Public Interface ICommunicationListener
派生

方法

Abort()

此方法会导致通信侦听器关闭。 Close 是一种终端状态,此方法会导致转换意外关闭。 调用此方法时,应取消任何未完成的操作 (包括关闭) 。

CloseAsync(CancellationToken)

此方法会导致通信侦听器关闭。 Close 是一种终端状态,此方法允许通信侦听器正常转换为此状态。

OpenAsync(CancellationToken)

此方法会导致打开通信侦听器。 打开完成后,通信侦听器将变得可用 - 接受并发送消息。

适用于