-
- 所有超级接口:
Resourcable
- 所有已知实现类:
MessageAgent
public interface MessageManager extends Resourcable
MQ消息管理器详情见: https://redkale.org
- 从以下版本开始:
- 2.8.0
- 作者:
- zhangjx
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 CompletableFuture<Void>
createTopic(String... topics)
创建topicCompletableFuture<Void>
deleteTopic(String... topics)
删除topic,如果不存在则跳过CompletableFuture<List<String>>
queryTopic()
查询所有topic-
从接口继承的方法 org.redkale.inject.Resourcable
resourceName
-
-
-
-
方法详细资料
-
createTopic
CompletableFuture<Void> createTopic(String... topics)
创建topic- 参数:
topics
- topic集合- 返回:
- 是否完成
-
deleteTopic
CompletableFuture<Void> deleteTopic(String... topics)
删除topic,如果不存在则跳过- 参数:
topics
- topic集合- 返回:
- 是否完成
-
queryTopic
CompletableFuture<List<String>> queryTopic()
查询所有topic- 返回:
- topic集合
-
-