See: Description
| Interface | Description |
|---|---|
| IPacket |
Interface of general MQTT/UDP packet.
|
| IPacketMultiSource |
Supports multiple listeners for incoming packets.
|
| IPacketSource |
| Class | Description |
|---|---|
| Engine | |
| PacketSourceMultiServer |
Supports multiple listeners at once.
|
| PacketSourceServer |
Usage:
PacketSourceServer ss = new PacketSourceServer();
ss.setSink( pkt -> { System.out.println(pkt);});
Starts automatically.
|
| PingReqPacket | |
| PingRespPacket | |
| PublishPacket |
PUBLISH packet.
|
| SubscribePacket | |
| SubServer |
Server loop to listen to network traffic and process incoming packets.
|
| TopicFilter |
| Exception | Description |
|---|---|
| MqttProtocolException |
Extremely simple MQTT-based protocol over an UDP broadcast transport.
See https://github.com/dzavalishin/mqtt_udp
Copyright © 2019. All rights reserved.