We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
i read the code of WebSocketClient.class,the method:run() has code blocks:
public void run() { InputStream istream; try { boolean isNewSocket = false; if (socketFactory != null) { socket = socketFactory.createSocket(); } else if( socket == null ) { socket = new Socket( proxy ); isNewSocket = true; } else if( socket.isClosed() ) { throw new IOException(); }
i found if i set socketFactory, it won't use the proxy. But wss must set the socketFactory, also it has other method? thanks
The text was updated successfully, but these errors were encountered:
See #1070
Best regards, Marcel
Sorry, something went wrong.
No branches or pull requests
i read the code of WebSocketClient.class,the method:run() has code blocks:
public void run() {
InputStream istream;
try {
boolean isNewSocket = false;
if (socketFactory != null) {
socket = socketFactory.createSocket();
} else if( socket == null ) {
socket = new Socket( proxy );
isNewSocket = true;
} else if( socket.isClosed() ) {
throw new IOException();
}
i found if i set socketFactory, it won't use the proxy. But wss must set the socketFactory, also it has other method?
thanks
The text was updated successfully, but these errors were encountered: