Uses of Class
org.simpleframework.http.socket.CloseCode
-
Packages that use CloseCode Package Description org.simpleframework.http.socket org.simpleframework.http.socket.service -
-
Uses of CloseCode in org.simpleframework.http.socket
Fields in org.simpleframework.http.socket declared as CloseCode Modifier and Type Field Description private CloseCode
Reason. code
This is the close code to be sent with a control frame.Methods in org.simpleframework.http.socket that return CloseCode Modifier and Type Method Description CloseCode
Reason. getCode()
This is used to get the RFC 6455 code describing the type of close event.static CloseCode
CloseCode. resolveCode(int high, int low)
static CloseCode
CloseCode. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CloseCode[]
CloseCode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.simpleframework.http.socket with parameters of type CloseCode Constructor Description Reason(CloseCode code)
Constructor for theReason
object.Reason(CloseCode code, java.lang.String text)
Constructor for theReason
object. -
Uses of CloseCode in org.simpleframework.http.socket.service
Methods in org.simpleframework.http.socket.service that return CloseCode Modifier and Type Method Description private CloseCode
ReasonExtractor. extractCode(byte[] data)
This method is used to extract the close code.
-