Uses of Class
net.targetr.wtm3.io.ReusableBufferList
Packages that use ReusableBufferList
Package
Description
Handles communications between web clients.
HTTP request logging.
WebSocket frame logging.
Input and output processing.
WebSocket data processing.
-
Uses of ReusableBufferList in net.targetr.rc.client
Methods in net.targetr.rc.client with parameters of type ReusableBufferListModifier and TypeMethodDescriptionstatic ClientCommandClientCommand.readRaw(ReusableBufferList buffers) Reads a list of buffers and parses it into a ClientCommand.voidClientCommand.writeJavaScriptTo(ReusableBufferList buffers) Writes the JavaScript payload of this command to the specified buffer list.Constructors in net.targetr.rc.client with parameters of type ReusableBufferListModifierConstructorDescriptionClientCommand(ReusableBufferList buffers) Creates a new command with no specified targets.ClientCommand(ReusableBufferList buffers, List<String> allowedTargets, List<String> deniedTargets) Creates a new command with the given data and targets. -
Uses of ReusableBufferList in net.targetr.rc.monitoring.logs.http
Methods in net.targetr.rc.monitoring.logs.http with parameters of type ReusableBufferListModifier and TypeMethodDescriptionprotected voidHttpRequestMonitoringWebSocketResponse.onReceiveText(ReusableBufferList buffers) -
Uses of ReusableBufferList in net.targetr.rc.monitoring.logs.websocket
Methods in net.targetr.rc.monitoring.logs.websocket with parameters of type ReusableBufferListModifier and TypeMethodDescriptionprotected voidWebSocketFrameMonitoringWebSocketResponse.onReceiveText(ReusableBufferList buffers) -
Uses of ReusableBufferList in net.targetr.wtm3.io
Methods in net.targetr.wtm3.io that return ReusableBufferListModifier and TypeMethodDescriptionReusableBufferList.split(byte splitByte) Splits this buffer list into two lists.Methods in net.targetr.wtm3.io with parameters of type ReusableBufferListModifier and TypeMethodDescriptionvoidReusableBufferList.add(ReusableBufferList buffers) Adds all buffers from another list to this list. -
Uses of ReusableBufferList in net.targetr.wtm3.net.http.websocket
Fields in net.targetr.wtm3.net.http.websocket declared as ReusableBufferListModifier and TypeFieldDescriptionWebSocketFrame.buffersThe payload data as a multiple reusable buffers.Methods in net.targetr.wtm3.net.http.websocket that return ReusableBufferListMethods in net.targetr.wtm3.net.http.websocket with parameters of type ReusableBufferListModifier and TypeMethodDescriptionprotected abstract voidWebSocketResponse.onReceiveText(ReusableBufferList buffers) Called when text is received from the WebSocket.voidWebSocket.writeText(ReusableBufferList buffers) Writes the given byte array as a text message to the WebSocket.