Uses of Class
io.undertow.websockets.core.WebSocketFrameType
-
Packages that use WebSocketFrameType Package Description io.undertow.websockets.core io.undertow.websockets.core.protocol.version07 -
-
Uses of WebSocketFrameType in io.undertow.websockets.core
Fields in io.undertow.websockets.core declared as WebSocketFrameType Modifier and Type Field Description protected WebSocketFrameType
StreamSourceFrameChannel. type
Methods in io.undertow.websockets.core that return WebSocketFrameType Modifier and Type Method Description WebSocketFrameType
StreamSinkFrameChannel. getType()
Return theWebSocketFrameType
for which theStreamSinkFrameChannel
was obtained.WebSocketFrameType
StreamSourceFrameChannel. getType()
Return theWebSocketFrameType
ornull
if its not known at the calling time.static WebSocketFrameType
WebSocketFrameType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static WebSocketFrameType[]
WebSocketFrameType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.undertow.websockets.core with parameters of type WebSocketFrameType Modifier and Type Method Description protected abstract StreamSinkFrameChannel
WebSocketChannel. createStreamSinkChannel(WebSocketFrameType type)
Create a new StreamSinkFrameChannel which can be used to send a WebSocket Frame of the typeWebSocketFrameType
.StreamSinkFrameChannel
WebSocketChannel. send(WebSocketFrameType type)
Returns a newStreamSinkFrameChannel
for sending the givenWebSocketFrameType
with the given payload.java.lang.IllegalArgumentException
WebSocketMessages_$bundle. unsupportedFrameType(WebSocketFrameType type)
java.lang.IllegalArgumentException
WebSocketMessages. unsupportedFrameType(WebSocketFrameType type)
Constructors in io.undertow.websockets.core with parameters of type WebSocketFrameType Constructor Description StreamSinkFrameChannel(WebSocketChannel channel, WebSocketFrameType type)
StreamSourceFrameChannel(WebSocketChannel wsChannel, WebSocketFrameType type, int rsv, boolean finalFragment, PooledByteBuffer pooled, long frameLength, Masker masker, ChannelFunction... functions)
StreamSourceFrameChannel(WebSocketChannel wsChannel, WebSocketFrameType type, PooledByteBuffer pooled, long frameLength)
-
Uses of WebSocketFrameType in io.undertow.websockets.core.protocol.version07
Methods in io.undertow.websockets.core.protocol.version07 with parameters of type WebSocketFrameType Modifier and Type Method Description protected StreamSinkFrameChannel
WebSocket07Channel. createStreamSinkChannel(WebSocketFrameType type)
Constructors in io.undertow.websockets.core.protocol.version07 with parameters of type WebSocketFrameType Constructor Description WebSocket07FrameSinkChannel(WebSocket07Channel wsChannel, WebSocketFrameType type)
-