public interface WebSocketClientFactory
Modifier and Type | Method and Description |
---|---|
WebSocketClient |
createWebSocketClient(java.net.URL url)
Create a new
WebSocketClient . |
WebSocketClient |
createWebSocketClient(java.net.URL url,
HttpClientConfiguration configuration)
Create a new
WebSocketClient with the specified configuration. |
@NonNull WebSocketClient createWebSocketClient(@Nullable java.net.URL url)
WebSocketClient
. Note that this method should only be used outside of the context of an application. Within Micronaut use
Inject
to inject a client insteadurl
- The base URL@NonNull WebSocketClient createWebSocketClient(@Nullable java.net.URL url, HttpClientConfiguration configuration)
WebSocketClient
with the specified configuration. Note that this method should only be used outside of the context of an application. Within Micronaut use
Inject
to inject a client insteadurl
- The base URLconfiguration
- The client configuration