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
@Override
public void onFailure(WebSocket ws, Throwable t, Response response) {
logger.error("[Connection {}] Failure", connectionId, t);
// Wouldn't it be better to just return null and return the connectionId
onFailureCallback.onReceive(null);
}
If one of the multiple subscriptions is disconnected, how do you retry without knowing the current subscription information Or throw the exception out
The text was updated successfully, but these errors were encountered:
So that the WS connection's Failure Callback can get more information when failure is detected and define how to handle next. We haven an internal ticket to solve this in the future.
WebSocketConnection.onFailure,
If one of the multiple subscriptions is disconnected, how do you retry without knowing the current subscription information Or throw the exception out
The text was updated successfully, but these errors were encountered: