Uses of Interface
io.quarkus.websockets.next.WebSocketClientConnection
Packages that use WebSocketClientConnection
-
Uses of WebSocketClientConnection in io.quarkus.websockets.next
Methods in io.quarkus.websockets.next that return WebSocketClientConnectionModifier and TypeMethodDescriptiondefault WebSocketClientConnectionBasicWebSocketConnector.connectAndAwait()default WebSocketClientConnectionWebSocketConnector.connectAndAwait()Methods in io.quarkus.websockets.next that return types with arguments of type WebSocketClientConnectionModifier and TypeMethodDescriptionio.smallrye.mutiny.Uni<WebSocketClientConnection>BasicWebSocketConnector.connect()io.smallrye.mutiny.Uni<WebSocketClientConnection>WebSocketConnector.connect()default Collection<WebSocketClientConnection>OpenClientConnections.findByClientId(String clientId) Returns an immutable snapshot of all open connections for the given client id.default Optional<WebSocketClientConnection>OpenClientConnections.findByConnectionId(String connectionId) Returns the open connection with the given id.default Collection<WebSocketClientConnection>OpenClientConnections.listAll()Returns an immutable snapshot of all open connections at the given time.OpenClientConnections.stream()Returns the stream of all open connections at the given time.Method parameters in io.quarkus.websockets.next with type arguments of type WebSocketClientConnectionModifier and TypeMethodDescriptionBasicWebSocketConnector.onBinaryMessage(BiConsumer<WebSocketClientConnection, io.vertx.core.buffer.Buffer> consumer) Set a callback to be invoked when a binary message is received from the server.BasicWebSocketConnector.onClose(BiConsumer<WebSocketClientConnection, CloseReason> consumer) Set a callback to be invoked when a connection to the server is closed.BasicWebSocketConnector.onError(BiConsumer<WebSocketClientConnection, Throwable> consumer) Set a callback to be invoked when an error occurs.BasicWebSocketConnector.onOpen(Consumer<WebSocketClientConnection> consumer) Set a callback to be invoked when a connection to the server is open.BasicWebSocketConnector.onPong(BiConsumer<WebSocketClientConnection, io.vertx.core.buffer.Buffer> consumer) Set a callback to be invoked when a pong message is received from the server.BasicWebSocketConnector.onTextMessage(BiConsumer<WebSocketClientConnection, String> consumer) Set a callback to be invoked when a text message is received from the server. -
Uses of WebSocketClientConnection in io.quarkus.websockets.next.runtime
Classes in io.quarkus.websockets.next.runtime that implement WebSocketClientConnectionMethods in io.quarkus.websockets.next.runtime that return types with arguments of type WebSocketClientConnectionModifier and TypeMethodDescriptionio.smallrye.mutiny.Uni<WebSocketClientConnection>BasicWebSocketConnectorImpl.connect()io.smallrye.mutiny.Uni<WebSocketClientConnection>WebSocketConnectorImpl.connect()ClientConnectionManager.getConnections(String endpoint) ClientConnectionManager.iterator()ClientConnectionManager.stream()Methods in io.quarkus.websockets.next.runtime with parameters of type WebSocketClientConnectionModifier and TypeMethodDescription(package private) voidClientConnectionManager.add(String endpoint, WebSocketClientConnection connection) voidClientConnectionManager.ClientConnectionListener.connectionAdded(String endpoint, WebSocketClientConnection connection) (package private) voidClientConnectionManager.remove(String endpoint, WebSocketClientConnection connection) Method parameters in io.quarkus.websockets.next.runtime with type arguments of type WebSocketClientConnectionModifier and TypeMethodDescriptionBasicWebSocketConnectorImpl.onBinaryMessage(BiConsumer<WebSocketClientConnection, io.vertx.core.buffer.Buffer> consumer) BasicWebSocketConnectorImpl.onClose(BiConsumer<WebSocketClientConnection, CloseReason> consumer) BasicWebSocketConnectorImpl.onError(BiConsumer<WebSocketClientConnection, Throwable> consumer) BasicWebSocketConnectorImpl.onOpen(Consumer<WebSocketClientConnection> consumer) BasicWebSocketConnectorImpl.onPong(BiConsumer<WebSocketClientConnection, io.vertx.core.buffer.Buffer> consumer) BasicWebSocketConnectorImpl.onTextMessage(BiConsumer<WebSocketClientConnection, String> consumer) Constructor parameters in io.quarkus.websockets.next.runtime with type arguments of type WebSocketClientConnectionModifierConstructorDescription(package private)ClientConnectionManager(jakarta.enterprise.event.Event<WebSocketClientConnection> openEvent, jakarta.enterprise.event.Event<WebSocketClientConnection> closedEvent)