You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/client.jl
+49-46
Original file line number
Diff line number
Diff line change
@@ -1,28 +1,30 @@
1
1
"""
2
2
Client
3
3
4
-
The MQTT client in Julia facilitates communication between a device and an MQTT broker over a network.
5
-
It manages connections, message handling, and maintains the state of communication.
6
-
The client operates through three main loops: the read loop listens for incoming messages from the broker and processes them using designated handlers;
7
-
the write loop sends packets to the broker from a queue, ensuring thread safety with a socket lock;
8
-
and the keep-alive loop periodically sends ping requests to the broker to maintain the connection and detect disconnections.
4
+
The MQTT client in Julia facilitates communication between a device and an MQTT broker over a network.
5
+
It manages connections, message handling, and maintains the state of communication.
6
+
The client operates through three main loops: the read loop listens for incoming messages from the broker and processes them using designated handlers;
7
+
the write loop sends packets to the broker from a queue, ensuring thread safety with a socket lock;
8
+
and the keep-alive loop periodically sends ping requests to the broker to maintain the connection and detect disconnections.
9
9
This client uses atomic operations to ensure thread safety for shared variables and supports asynchronous task management for efficient, non-blocking operations.
10
10
11
11
# Fields
12
-
- `state::UInt8`: client state.
13
-
- `on_msg::TrieNode`: A trie mapping topics to callback functions.
14
-
- `keep_alive::UInt16`: The keep-alive time in seconds.
15
-
- `last_id::UInt16`: The last packet identifier used.
16
-
- `in_flight::Dict{UInt16, Future}`: A dictionary mapping packet identifiers to futures.
17
-
- `write_packets::AbstractChannel`: A channel for writing packets.
18
-
- `socket`: The socket used for communication with the broker.
19
-
- `socket_lock`: A lock for synchronizing access to the socket.
20
-
- `ping_timeout::UInt64`: The ping timeout in seconds.
21
-
- `ping_outstanding::Atomic{UInt8}`: An atomic counter for the number of outstanding ping requests.
22
-
- `last_sent::Atomic{Float64}`: An atomic float representing the timestamp of the last sent packet.
23
-
- `last_received::Atomic{Float64}`: An atomic float representing the timestamp of the last received packet.
12
+
13
+
- `state::UInt8`: client state.
14
+
- `on_msg::TrieNode`: A trie mapping topics to callback functions.
15
+
- `keep_alive::UInt16`: The keep-alive time in seconds.
16
+
- `last_id::UInt16`: The last packet identifier used.
17
+
- `in_flight::Dict{UInt16, Future}`: A dictionary mapping packet identifiers to futures.
18
+
- `write_packets::AbstractChannel`: A channel for writing packets.
19
+
- `socket`: The socket used for communication with the broker.
20
+
- `socket_lock`: A lock for synchronizing access to the socket.
21
+
- `ping_timeout::UInt64`: The ping timeout in seconds.
22
+
- `ping_outstanding::Atomic{UInt8}`: An atomic counter for the number of outstanding ping requests.
23
+
- `last_sent::Atomic{Float64}`: An atomic float representing the timestamp of the last sent packet.
24
+
- `last_received::Atomic{Float64}`: An atomic float representing the timestamp of the last received packet.
24
25
25
26
# Constructor
27
+
26
28
`Client(ping_timeout::UInt64=UInt64(60))` constructs a new `Client` object with the specified ping timeout (default: 60 seconds).
0 commit comments