Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implementation of the MQTT Protocol #12

Open
andrasmarkus opened this issue Oct 10, 2024 · 0 comments
Open

Implementation of the MQTT Protocol #12

andrasmarkus opened this issue Oct 10, 2024 · 0 comments
Labels
enhancement New feature or request m-simulator Related to the simulator module

Comments

@andrasmarkus
Copy link
Collaborator

Building on the current functionality of the simulator, the goal is to model the operation of the MQTT protocol. The proposed functionalities are as follows:

MQTT Broker: Clients (publishers and subscribers) communicate through the broker. The broker is responsible for receiving messages from publishers and routing them to the appropriate subscribers based on the topic.

Topics: Topics are strings that define how messages are routed by the broker. The broker forwards messages to subscribers based on the topic.

QoS Levels: These levels define how the protocol handles message delivery:

  • QoS 0: “At most once” - no acknowledgment from the broker.
  • QoS 1: “At least once” - the message is acknowledged but may be delivered multiple times.
  • QoS 2: “Exactly once” - ensures the message is delivered only once.
@andrasmarkus andrasmarkus added enhancement New feature or request m-simulator Related to the simulator module labels Oct 10, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request m-simulator Related to the simulator module
Projects
None yet
Development

No branches or pull requests

1 participant