Uses of Interface
org.simpleframework.http.socket.FrameChannel
-
Packages that use FrameChannel Package Description org.simpleframework.http.socket org.simpleframework.http.socket.service -
-
Uses of FrameChannel in org.simpleframework.http.socket
Methods in org.simpleframework.http.socket that return FrameChannel Modifier and Type Method Description FrameChannel
Session. 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 FrameChannel Modifier and Type Class Description (package private) class
FrameConnection
TheFrameConnection
represents a connection that can send and receivd WebSocket frames.(package private) class
ServiceChannel
TheServiceChannel
represents a full duplex communication channel as defined by RFC 6455.Fields in org.simpleframework.http.socket.service declared as FrameChannel Modifier and Type Field Description private FrameChannel
ServiceChannel. channel
This is the internal channel for full duplex communication.private FrameChannel
ServiceSession. channel
The WebSocket used for asynchronous full duplex communication.Methods in org.simpleframework.http.socket.service that return FrameChannel Modifier and Type Method Description FrameChannel
ServiceSession. getChannel()
Provides aWebSocket
that can be used to communicate with the connected client.Constructors in org.simpleframework.http.socket.service with parameters of type FrameChannel Constructor Description ServiceChannel(FrameChannel channel)
Constructor for theServiceChannel
object.ServiceSession(FrameChannel channel, Request request, Response response)
Constructor for theServiceSession
object.
-