Package | Description |
---|---|
org.jetlang.web |
Modifier and Type | Class and Description |
---|---|
static class |
SendResult.Buffered |
static class |
SendResult.FailedWithError |
Modifier and Type | Field and Description |
---|---|
static SendResult |
SendResult.Closed |
static SendResult |
SendResult.SUCCESS |
Modifier and Type | Method and Description |
---|---|
SendResult |
NioWriter.send(java.nio.ByteBuffer bb) |
SendResult |
HttpResponse.send(java.nio.ByteBuffer fullResponse) |
SendResult |
HttpResponse.Default.send(java.nio.ByteBuffer fullResponse) |
SendResult |
HttpResponse.Decorator.send(java.nio.ByteBuffer fullResponse) |
SendResult |
WebSocketClient.send(java.lang.String msg) |
SendResult |
WebFiberConnection.send(java.lang.String msg) |
SendResult |
WebSocketConnection.send(java.lang.String msg)
Non-Blocking send of a text message.
|
SendResult |
WebSocketConnectionImpl.send(java.lang.String msg) |
SendResult |
WebFiberConnection.sendBinary(byte[] buffer,
int offset,
int length) |
SendResult |
WebSocketConnection.sendBinary(byte[] buffer,
int offset,
int length)
Non-Blocking send of a binary message.
|
SendResult |
WebSocketConnectionImpl.sendBinary(byte[] buffer,
int offset,
int length) |
SendResult |
WebFiberConnection.sendPing(byte[] bytes,
int offset,
int length) |
SendResult |
WebSocketConnection.sendPing(byte[] bytes,
int offset,
int length)
Non-Blocking send
|
SendResult |
WebSocketConnectionImpl.sendPing(byte[] bytes,
int offset,
int length) |
SendResult |
WebFiberConnection.sendPong(byte[] bytes,
int offset,
int length) |
SendResult |
WebSocketConnection.sendPong(byte[] bytes,
int offset,
int length)
Non-Blocking send
|
SendResult |
WebSocketConnectionImpl.sendPong(byte[] bytes,
int offset,
int length) |
default SendResult |
HttpResponse.sendResponse(int statusCode,
java.lang.String statusTxt,
java.lang.String contentType,
byte[] content,
java.nio.charset.Charset charset) |
default SendResult |
HttpResponse.sendResponse(int statusCode,
java.lang.String statusTxt,
java.lang.String contentType,
KeyValueList headers,
byte[] content,
java.nio.charset.Charset charset) |
default SendResult |
HttpResponse.sendResponse(int statusCode,
java.lang.String statusTxt,
java.lang.String contentType,
java.nio.file.Path resource,
java.nio.charset.Charset charset) |
default SendResult |
HttpResponse.sendResponse(int statusCode,
java.lang.String statusTxt,
java.lang.String contentType,
java.lang.String content,
java.nio.charset.Charset ascii) |
SendResult |
WebFiberConnection.sendText(byte[] bytes,
int offset,
int length) |
SendResult |
WebSocketConnection.sendText(byte[] bytes,
int offset,
int length)
Non-Blocking send of a text message.
|
SendResult |
WebSocketConnectionImpl.sendText(byte[] bytes,
int offset,
int length) |
SendResult |
NioWriter.sendWsMsg(byte opCode,
byte[] bytes,
int offset,
int length,
byte[] maskBytes) |
Copyright © 2019. All Rights Reserved.