File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/org/java_websocket/server Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ public abstract class WebSocketServer extends AbstractWebSocket implements Runna
7373
7474 private final AtomicBoolean isclosed = new AtomicBoolean ( false );
7575
76- private List <WebSocketWorker > decoders ;
76+ protected List <WebSocketWorker > decoders ;
7777
7878 private List <WebSocketImpl > iqueue ;
7979 private BlockingQueue <ByteBuffer > buffers ;
@@ -470,7 +470,7 @@ public ByteBuffer createBuffer() {
470470 return ByteBuffer .allocate ( WebSocketImpl .RCVBUF );
471471 }
472472
473- private void queue ( WebSocketImpl ws ) throws InterruptedException {
473+ protected void queue ( WebSocketImpl ws ) throws InterruptedException {
474474 if ( ws .workerThread == null ) {
475475 ws .workerThread = decoders .get ( queueinvokes % decoders .size () );
476476 queueinvokes ++;
You can’t perform that action at this time.
0 commit comments