Uses of Interface
javax.websocket.ClientEndpointConfig
-
Packages that use ClientEndpointConfig Package Description javax.websocket -
-
Uses of ClientEndpointConfig in javax.websocket
Classes in javax.websocket that implement ClientEndpointConfig Modifier and Type Class Description (package private) class
DefaultClientEndpointConfig
The DefaultClientEndpointConfig is a concrete implementation of a client configuration.Methods in javax.websocket that return ClientEndpointConfig Modifier and Type Method Description ClientEndpointConfig
ClientEndpointConfig.Builder. build()
Builds a configuration object using the attributes set on this builder.Methods in javax.websocket with parameters of type ClientEndpointConfig Modifier and Type Method Description Session
WebSocketContainer. connectToServer(java.lang.Class<? extends Endpoint> endpointClass, ClientEndpointConfig cec, java.net.URI path)
Connect the supplied programmatic endpoint to its server with the given configuration.Session
WebSocketContainer. connectToServer(Endpoint endpointInstance, ClientEndpointConfig cec, java.net.URI path)
Connect the supplied programmatic client endpoint instance to its server with the given configuration.
-