Home
last modified time | relevance | path

Searched refs:OPCODE_BINARY (Results 1 – 4 of 4) sorted by last modified time

/unit/src/java/nginx/unit/websocket/
H A DWsRemoteEndpointImplBase.java134 sendMessageBlock(Constants.OPCODE_BINARY, data, true); in sendBytes()
155 startMessage(Constants.OPCODE_BINARY, data, true, sush); in sendBytesByCompletion()
165 sendMessageBlock(Constants.OPCODE_BINARY, partialByte, last); in sendPartialBytes()
1010 endpoint.sendMessageBlock(Constants.OPCODE_BINARY, buffer, last); in doWrite()
H A DWsFrameBase.java181 if (opCode == Constants.OPCODE_BINARY) { in processInitialHeader()
H A DWsSession.java831 if (!last && (opCode == Constants.OPCODE_BINARY || in processFrame()
877 if (opCode == Constants.OPCODE_BINARY) { in processFrame()
H A DConstants.java33 public static final byte OPCODE_BINARY = 0x02; field in Constants