Uses of Class
jdk.incubator.http.WebSocket.MessagePart
-
Packages that use WebSocket.MessagePart Package Description jdk.incubator.http High level HTTP and WebSocket API -
-
Uses of WebSocket.MessagePart in jdk.incubator.http
Methods in jdk.incubator.http that return WebSocket.MessagePart Modifier and Type Method Description static WebSocket.MessagePart
WebSocket.MessagePart. valueOf(String name)
Returns the enum constant of this type with the specified name.static WebSocket.MessagePart[]
WebSocket.MessagePart. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in jdk.incubator.http with parameters of type WebSocket.MessagePart Modifier and Type Method Description default CompletionStage<?>
WebSocket.Listener. onBinary(WebSocket webSocket, ByteBuffer message, WebSocket.MessagePart part)
Receives a Binary message.default CompletionStage<?>
WebSocket.Listener. onText(WebSocket webSocket, CharSequence message, WebSocket.MessagePart part)
Receives a Text message.
-