Package | Description |
---|---|
org.simpleframework.http.core | |
org.simpleframework.transport |
Modifier and Type | Method and Description |
---|---|
void |
ContainerSocketProcessor.process(Socket socket)
This is used to consume HTTP messages that arrive on the socket
and dispatch them to the internal container.
|
Modifier and Type | Interface and Description |
---|---|
interface |
Transport
The
Transport interface represents a low level means
to deliver content to the connected client. |
Modifier and Type | Class and Description |
---|---|
class |
SocketTransport
The
SocketTransport object offers a transport that can
send and receive bytes in a non-blocking manner. |
class |
SocketWrapper
This is a
SocketWrapper objects that represents a TCP
socket connections. |
Modifier and Type | Method and Description |
---|---|
void |
TransportSocketProcessor.process(Socket socket)
Used to connect the
Socket which is a full duplex
TCP connection to a higher layer the application. |
void |
SocketProcessor.process(Socket socket)
Used to process the
Socket which is a full duplex
TCP connection to a higher layer the application. |
Constructor and Description |
---|
SocketTransport(Socket socket,
Reactor reactor)
Constructor for the
SocketTransport object. |
SocketTransport(Socket socket,
Reactor reactor,
int buffer)
Constructor for the
SocketTransport object. |
SocketTransport(Socket socket,
Reactor reactor,
int buffer,
int threshold)
Constructor for the
SocketTransport object. |
Copyright © 2023. All rights reserved.