Uses of Interface
org.simpleframework.http.socket.FrameChannel
Packages that use FrameChannel
-
Uses of FrameChannel in org.simpleframework.http.socket
Methods in org.simpleframework.http.socket that return FrameChannelModifier and TypeMethodDescriptionSession.getChannel()
Provides aFrameChannel
that can be used to communicate with the connected client. -
Uses of FrameChannel in org.simpleframework.http.socket.service
Classes in org.simpleframework.http.socket.service that implement FrameChannelModifier and TypeClassDescription(package private) class
TheFrameConnection
represents a connection that can send and receivd WebSocket frames.(package private) class
TheServiceChannel
represents a full duplex communication channel as defined by RFC 6455.Fields in org.simpleframework.http.socket.service declared as FrameChannelModifier and TypeFieldDescriptionprivate final FrameChannel
ServiceChannel.channel
This is the internal channel for full duplex communication.private final FrameChannel
ServiceSession.channel
The WebSocket used for asynchronous full duplex communication.Methods in org.simpleframework.http.socket.service that return FrameChannelModifier and TypeMethodDescriptionServiceSession.getChannel()
Provides aWebSocket
that can be used to communicate with the connected client.Constructors in org.simpleframework.http.socket.service with parameters of type FrameChannelModifierConstructorDescriptionServiceChannel
(FrameChannel channel) Constructor for theServiceChannel
object.ServiceSession
(FrameChannel channel, Request request, Response response) Constructor for theServiceSession
object.