Add getActiveTopic method to RPatternTopicReactive & RPatternTopicRx

Signed-off-by: Shihao <327800885@qq.com>
pull/5821/head
Shihao 10 months ago
parent a53134bb26
commit b53f2ec388

@ -66,4 +66,11 @@ public interface RPatternTopicReactive {
*/
Mono<Void> removeListener(int listenerId);
/**
* Returns active topic list of this pattern
* @return all actives channel of this pattern
*/
Mono<List<String>> getActiveTopics();
}

@ -66,4 +66,10 @@ public interface RPatternTopicRx {
*/
void removeListener(int listenerId);
/**
* Returns active topic list of this pattern
* @return all actives topic of this pattern
*/
Single<List<String>> getActiveTopics();
}

Loading…
Cancel
Save