Implement Simple Subscription Service
Closed this issue · 2 comments
JavaSaBr commented
- Create an interface SubscriptionService with methods:
1.subscribe(mqttClient, topic)
2.unsubscribe(mqttClient, topic)
3.getSubscribers(topic) - Create s very simple implementation based on hash map with name SimpleSubscriptionService
JavaSaBr commented
Topic is SubscribeTopicFilter class
crazyrokr commented
Done