JavaSaBr/mqtt-broker

Implement Simple Subscription Service

Closed this issue · 2 comments

  1. Create an interface SubscriptionService with methods:
    1.subscribe(mqttClient, topic)
    2.unsubscribe(mqttClient, topic)
    3.getSubscribers(topic)
  2. Create s very simple implementation based on hash map with name SimpleSubscriptionService

Topic is SubscribeTopicFilter class

Done