@@ -86,7 +86,7 @@ public interface Mqtt5BlockingClient extends Mqtt5Client {
86
86
* @return the SubAck message if all subscriptions of the Subscribe message were successful (the SubAck message
87
87
* contains no Error Codes).
88
88
* @throws com.hivemq.client2.mqtt.mqtt5.exceptions.Mqtt5SubAckException wrapping the SubAck message if it contains
89
- * at least one Error Code.
89
+ * at least one Error Code.
90
90
*/
91
91
@ NotNull Mqtt5SubAck subscribe (@ NotNull Mqtt5Subscribe subscribe );
92
92
@@ -129,7 +129,7 @@ public interface Mqtt5BlockingClient extends Mqtt5Client {
129
129
* @return the UnsubAck message if all Topic Filters of the Unsubscribe message were successfully unsubscribed (the
130
130
* UnsubAck message contains no Error Codes).
131
131
* @throws com.hivemq.client2.mqtt.mqtt5.exceptions.Mqtt5UnsubAckException wrapping the UnsubAck message if it
132
- * contains at least one Error Code.
132
+ * contains at least one Error Code.
133
133
*/
134
134
@ NotNull Mqtt5UnsubAck unsubscribe (@ NotNull Mqtt5Unsubscribe unsubscribe );
135
135
@@ -151,10 +151,10 @@ public interface Mqtt5BlockingClient extends Mqtt5Client {
151
151
* @param publish the Publish message sent to the broker.
152
152
* @return the {@link Mqtt5PublishResult} if the Publish message was successfully published (no acknowledgement
153
153
* message contains an Error Code, {@link Mqtt5PublishResult#getError()} will always be absent).
154
- * @throws com.hivemq.client2.mqtt.mqtt5.exceptions.Mqtt5PubAckException wrapping the corresponding PubAck message if
155
- * it contains an Error Code.
156
- * @throws com.hivemq.client2.mqtt.mqtt5.exceptions.Mqtt5PubRecException wrapping the corresponding PubRec message if
157
- * it contains an Error Code.
154
+ * @throws com.hivemq.client2.mqtt.mqtt5.exceptions.Mqtt5PubAckException wrapping the corresponding PubAck message
155
+ * if it contains an Error Code.
156
+ * @throws com.hivemq.client2.mqtt.mqtt5.exceptions.Mqtt5PubRecException wrapping the corresponding PubRec message
157
+ * if it contains an Error Code.
158
158
*/
159
159
@ NotNull Mqtt5PublishResult publish (@ NotNull Mqtt5Publish publish );
160
160
@@ -174,7 +174,7 @@ public interface Mqtt5BlockingClient extends Mqtt5Client {
174
174
* Re-authenticates this client.
175
175
*
176
176
* @throws com.hivemq.client2.mqtt.mqtt5.exceptions.Mqtt5AuthException wrapping the Auth message with the Error Code
177
- * if not re-authenticated successfully.
177
+ * if not re-authenticated successfully.
178
178
*/
179
179
void reauth ();
180
180
0 commit comments