-
Notifications
You must be signed in to change notification settings - Fork 10.4k
Add support for negotiateVersion query string parameter #13880
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
src/SignalR/clients/java/signalr/src/main/java/com/microsoft/signalr/HubConnection.java
Outdated
Show resolved
Hide resolved
src/SignalR/clients/java/signalr/src/main/java/com/microsoft/signalr/HubConnection.java
Outdated
Show resolved
Hide resolved
src/SignalR/clients/java/signalr/src/test/java/com/microsoft/signalr/HubConnectionTest.java
Outdated
Show resolved
Hide resolved
src/SignalR/clients/java/signalr/src/test/java/com/microsoft/signalr/HubConnectionTest.java
Outdated
Show resolved
Hide resolved
src/SignalR/clients/java/signalr/src/test/java/com/microsoft/signalr/HubConnectionTest.java
Outdated
Show resolved
Hide resolved
🆙 📅 |
src/SignalR/clients/java/signalr/src/main/java/com/microsoft/signalr/HubConnection.java
Outdated
Show resolved
Hide resolved
@@ -521,6 +525,7 @@ private void stopConnection(String errorMessage) { | |||
handshakeResponseSubject.onComplete(); | |||
redirectAccessTokenProvider = null; | |||
connectionId = null; | |||
connectionToken = null; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are we trying to follow any convention related to using or not using this.
to access fields?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should, but not currently. It's just random right now.
…ignalr/HubConnection.java Co-Authored-By: Stephen Halter <[email protected]>
Follow up on the
negotiateVersion
changes from #13389 for the Java client.I'll probably just leave this as a draft until the connectionToken change #13773 goes and make the necessary changes in this branch as well.