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 WebSocketFrameTypeStreamSourceFrameChannel. typeMethods in io.undertow.websockets.core that return WebSocketFrameType Modifier and Type Method Description WebSocketFrameTypeStreamSinkFrameChannel. getType()Return theWebSocketFrameTypefor which theStreamSinkFrameChannelwas obtained.WebSocketFrameTypeStreamSourceFrameChannel. getType()Return theWebSocketFrameTypeornullif its not known at the calling time.static WebSocketFrameTypeWebSocketFrameType. valueOf(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 StreamSinkFrameChannelWebSocketChannel. createStreamSinkChannel(WebSocketFrameType type)Create a new StreamSinkFrameChannel which can be used to send a WebSocket Frame of the typeWebSocketFrameType.StreamSinkFrameChannelWebSocketChannel. send(WebSocketFrameType type)Returns a newStreamSinkFrameChannelfor sending the givenWebSocketFrameTypewith the given payload.IllegalArgumentExceptionWebSocketMessages_$bundle. unsupportedFrameType(WebSocketFrameType type)IllegalArgumentExceptionWebSocketMessages. 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 StreamSinkFrameChannelWebSocket07Channel. createStreamSinkChannel(WebSocketFrameType type)Constructors in io.undertow.websockets.core.protocol.version07 with parameters of type WebSocketFrameType Constructor Description WebSocket07FrameSinkChannel(WebSocket07Channel wsChannel, WebSocketFrameType type)
-