Uses of Interface
org.simpleframework.http.socket.Frame
-
Packages that use Frame Package Description org.simpleframework.http.socket org.simpleframework.http.socket.service -
-
Uses of Frame in org.simpleframework.http.socket
Classes in org.simpleframework.http.socket that implement Frame Modifier and Type Class Description class
DataFrame
TheDataFrame
object represents a frame as defined in RFC 6455.Methods in org.simpleframework.http.socket that return Frame Modifier and Type Method Description Frame
DataFrame. getFrame(FrameType type)
This method is used to convert from one frame type to another.Frame
Frame. getFrame(FrameType type)
This method is used to convert from one frame type to another.Methods in org.simpleframework.http.socket with parameters of type Frame Modifier and Type Method Description void
FrameListener. onFrame(Session session, Frame frame)
This is called when a new frame arrives on the WebSocket.void
FrameChannel. send(Frame frame)
This is used to send data to the connected client. -
Uses of Frame in org.simpleframework.http.socket.service
Fields in org.simpleframework.http.socket.service declared as Frame Modifier and Type Field Description private Frame
StatusChecker. frame
This is the frame that contains the ping to send.Methods in org.simpleframework.http.socket.service that return Frame Modifier and Type Method Description Frame
FrameBuilder. create(byte[] data, int count)
This is used to create a frame object to represent the data that has been consumed.private Frame
FrameBuilder. createBinary(byte[] data, int count)
This is used to create a frame object from the provided data.private Frame
FrameBuilder. createText(byte[] data, int count)
This is used to create a frame object from the provided data.Frame
FrameConsumer. getFrame()
This is used to create a frame object to represent the data that has been consumed.Methods in org.simpleframework.http.socket.service with parameters of type Frame Modifier and Type Method Description int
FrameEncoder. encode(Frame frame)
This is used to encode the provided frame as a WebSocket frame as of RFC 6455.Reason
ReasonExtractor. extract(Frame frame)
This is used to extract a reason from the provided frame.void
StatusResultListener. onFrame(Session session, Frame frame)
This is called when a new frame arrives on the WebSocket.void
FrameConnection. send(Frame frame)
This is used to send data to the connected client.void
ServiceChannel. send(Frame frame)
This is used to send data to the connected client.
-