Uses of Class
org.simpleframework.http.socket.FrameType
-
Packages that use FrameType Package Description org.simpleframework.http.socket org.simpleframework.http.socket.service -
-
Uses of FrameType in org.simpleframework.http.socket
Fields in org.simpleframework.http.socket declared as FrameType Modifier and Type Field Description private FrameType
DataFrame. type
This is the type used to determine the intent of the frame.Methods in org.simpleframework.http.socket that return FrameType Modifier and Type Method Description FrameType
DataFrame. getType()
This is used to determine the type of frame.FrameType
Frame. getType()
This is used to determine the type of frame.static FrameType
FrameType. resolveType(int octet)
This is used to acquire the frame type given an opcode.static FrameType
FrameType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FrameType[]
FrameType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.simpleframework.http.socket with parameters of type FrameType 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.Constructors in org.simpleframework.http.socket with parameters of type FrameType Constructor Description DataFrame(FrameType type)
Constructor for theDataFrame
object.DataFrame(FrameType type, byte[] data)
Constructor for theDataFrame
object.DataFrame(FrameType type, byte[] data, boolean last)
Constructor for theDataFrame
object.DataFrame(FrameType type, java.lang.String text)
Constructor for theDataFrame
object.DataFrame(FrameType type, java.lang.String text, boolean last)
Constructor for theDataFrame
object.DataFrame(FrameType type, Data data)
Constructor for theDataFrame
object.DataFrame(FrameType type, Data data, boolean last)
Constructor for theDataFrame
object. -
Uses of FrameType in org.simpleframework.http.socket.service
Fields in org.simpleframework.http.socket.service declared as FrameType Modifier and Type Field Description private FrameType
FrameHeaderConsumer. type
This is the frame type which represents the opcode.Methods in org.simpleframework.http.socket.service that return FrameType Modifier and Type Method Description FrameType
FrameConsumer. getType()
This is used to determine the type of frame.FrameType
FrameHeader. getType()
This is used to determine the type of frame.FrameType
FrameHeaderConsumer. getType()
This is used to determine the type of frame.Methods in org.simpleframework.http.socket.service with parameters of type FrameType Modifier and Type Method Description private int
FrameEncoder. encode(FrameType type, byte[] data, boolean last)
This is used to encode the provided frame as a WebSocket frame as of RFC 6455.
-