Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,8 @@ public void sendEvents(List<Message> messages, int timeoutMilliseconds)
* <p>
* This subscription is preserved between reconnect attempts. However, it is not preserved after a client has
* been closed because the user called {@link #close()} or because this client lost its connection and its retry
* policy was exhausted.
* policy was exhausted. It is also not preserved if, when using MQTT, the reconnection takes long enough that the
* MQTT session is lost before a successful CONNACK.
* </p>
* @param desiredPropertiesCallback The callback to execute each time a desired property update message is received
* from the service. This will contain one or many properties updated at once.
Expand All @@ -345,7 +346,8 @@ public void subscribeToDesiredProperties(DesiredPropertiesCallback desiredProper
* <p>
* This subscription is preserved between reconnect attempts. However, it is not preserved after a client has
* been closed because the user called {@link #close()} or because this client lost its connection and its retry
* policy was exhausted.
* policy was exhausted. It is also not preserved if, when using MQTT, the reconnection takes long enough that the
* MQTT session is lost before a successful CONNACK.
* </p>
* @param desiredPropertiesCallback The callback to execute each time a desired property update message is received
* from the service. This will contain one or many properties updated at once.
Expand Down Expand Up @@ -542,7 +544,8 @@ public Twin getTwin(int timeoutMilliseconds) throws InterruptedException, Illega
* <p>
* This subscription is preserved between reconnect attempts. However, it is not preserved after a client has
* been closed because the user called {@link #close()} or because this client lost its connection and its retry
* policy was exhausted.
* policy was exhausted. It is also not preserved if, when using MQTT, the reconnection takes long enough that the
* MQTT session is lost before a successful CONNACK.
* </p>
* @param methodCallback Callback on which direct methods shall be invoked. Cannot be {@code null}.
* @param methodCallbackContext Context for device method callback. Can be {@code null}.
Expand All @@ -565,7 +568,8 @@ public void subscribeToMethods(MethodCallback methodCallback, Object methodCallb
* <p>
* This subscription is preserved between reconnect attempts. However, it is not preserved after a client has
* been closed because the user called {@link #close()} or because this client lost its connection and its retry
* policy was exhausted.
* policy was exhausted. It is also not preserved if, when using MQTT, the reconnection takes long enough that the
* MQTT session is lost before a successful CONNACK.
* </p>
* @param methodCallback Callback on which direct methods shall be invoked. Cannot be {@code null}.
* @param methodCallbackContext Context for device method callback. Can be {@code null}.
Expand Down
Loading