你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
ITopicClient 接口
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
TopicClient 可用于与服务总线主题的所有基本交互。
public interface ITopicClient : Microsoft.Azure.ServiceBus.Core.ISenderClient
type ITopicClient = interface
interface ISenderClient
interface IClientEntity
Public Interface ITopicClient
Implements ISenderClient
- 派生
- 实现
示例
创建新的 TopicClient
ITopicClient topicClient = new TopicClient(
namespaceConnectionString,
topicName,
RetryExponential);
向主题发送消息:
byte[] data = GetData();
await topicClient.SendAsync(data);
属性
ClientId |
获取用于标识此客户端的 ID。 这可用于关联日志和异常。 (继承自 IClientEntity) |
IsClosedOrClosing |
如果客户端关闭或关闭,则返回 true。 (继承自 IClientEntity) |
OperationTimeout |
持续时间,之后单个操作将超时。 (继承自 IClientEntity) |
OwnsConnection |
如果拥有连接,则返回 true;如果共享连接,则返回 false。 (继承自 IClientEntity) |
Path |
获取实体路径。 (继承自 IClientEntity) |
RegisteredPlugins |
获取此客户端当前注册的插件的列表。 (继承自 IClientEntity) |
ServiceBusConnection |
服务总线命名空间的连接对象。 (继承自 IClientEntity) |
TopicName |
获取主题的名称。 |
方法
CancelScheduledMessageAsync(Int64) |
取消已计划的消息。 (继承自 ISenderClient) |
CloseAsync() |
关闭客户端。 关闭它打开的连接。 (继承自 IClientEntity) |
RegisterPlugin(ServiceBusPlugin) |
ServiceBusPlugin注册要用于此客户端的 。 (继承自 IClientEntity) |
ScheduleMessageAsync(Message, DateTimeOffset) |
计划消息显示在服务总线上。 (继承自 ISenderClient) |
SendAsync(IList<Message>) |
将消息列表发送到服务总线。 当对分区实体调用时,用于不同分区的消息不能一起批处理。 (继承自 ISenderClient) |
SendAsync(Message) |
向服务总线发送消息。 (继承自 ISenderClient) |
UnregisterPlugin(String) |
取消注册 ServiceBusPlugin。 (继承自 IClientEntity) |