File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
src/main/java/org/java_websocket/client Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 3232
3333import org .java_websocket .AbstractWrappedByteChannel ;
3434
35+ @ Deprecated
3536public abstract class AbstractClientProxyChannel extends AbstractWrappedByteChannel {
3637 protected final ByteBuffer proxyHandshake ;
3738
@@ -40,6 +41,7 @@ public abstract class AbstractClientProxyChannel extends AbstractWrappedByteChan
4041 * @param towrap
4142 * The channel to the proxy server
4243 **/
44+ @ Deprecated
4345 public AbstractClientProxyChannel ( ByteChannel towrap ) {
4446 super ( towrap );
4547 try {
@@ -50,6 +52,7 @@ public AbstractClientProxyChannel( ByteChannel towrap ) {
5052 }
5153
5254 @ Override
55+ @ Deprecated
5356 public int write ( ByteBuffer src ) throws IOException {
5457 if ( !proxyHandshake .hasRemaining () ) {
5558 return super .write ( src );
@@ -58,6 +61,7 @@ public int write( ByteBuffer src ) throws IOException {
5861 }
5962 }
6063
64+ @ Deprecated
6165 public abstract String buildHandShake ();
6266
6367}
You can’t perform that action at this time.
0 commit comments