Skip to content

Commit

Permalink
Move WebSocketInternal to internal package
Browse files Browse the repository at this point in the history
  • Loading branch information
vietj committed Sep 27, 2024
1 parent 0365f96 commit 86c39b8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
import io.vertx.core.http.impl.ws.WebSocketFrameInternal;
import io.vertx.core.internal.ContextInternal;
import io.vertx.core.internal.PromiseInternal;
import io.vertx.core.internal.http.WebSocketInternal;
import io.vertx.core.net.SocketAddress;
import io.vertx.core.internal.concurrent.InboundMessageQueue;
import io.vertx.core.net.impl.VertxConnection;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,16 @@
*
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
*/
package io.vertx.core.http.impl;
package io.vertx.core.internal.http;

import io.netty.channel.ChannelHandlerContext;
import io.vertx.core.http.HttpConnection;
import io.vertx.core.http.WebSocket;
import io.vertx.core.http.WebSocketBase;

public interface WebSocketInternal extends WebSocket {

/**
* @return the Netty channel handler context
*/
ChannelHandlerContext channelHandlerContext();

}
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
import io.vertx.core.http.WebsocketVersion;
import io.vertx.core.http.impl.Http1xClientConnection;
import io.vertx.core.http.impl.Http1xServerConnection;
import io.vertx.core.http.impl.WebSocketInternal;
import io.vertx.core.internal.http.WebSocketInternal;
import io.vertx.core.http.impl.ws.WebSocketFrameImpl;
import io.vertx.core.internal.VertxInternal;
import io.vertx.core.internal.buffer.BufferInternal;
Expand Down

0 comments on commit 86c39b8

Please sign in to comment.