RSocket for performing or handling RSocket interactions, SocketAcceptor for declaring responders, Payload for access to the
content of a payload, and others.See: Description
| Interface | Description |
|---|---|
| Availability | |
| Closeable |
An interface which allows listening to when a specific instance of this interface is closed
|
| DuplexConnection |
Represents a connection with input/output that the protocol uses.
|
| Payload |
Payload of a Frame .
|
| ResponderRSocket | Deprecated
as of 1.0 RC7 in favor of using
RSocket.requestChannel(Publisher) with Flux.switchOnFirst(BiFunction) |
| RSocket |
A contract providing different interaction models for RSocket protocol.
|
| RSocketFactory.ClientTransportAcceptor | |
| RSocketFactory.ServerTransportAcceptor | |
| RSocketFactory.Start<T extends Closeable> | |
| SocketAcceptor |
RSocket is a full duplex protocol where a client and server are identical in terms of both having
the capability to initiate requests to their peer.
|
| Class | Description |
|---|---|
| AbstractRSocket | Deprecated
as of 1.0 in favor of implementing
RSocket directly which has default
methods. |
| ConnectionSetupPayload |
Exposes information from the
SETUP frame to a server, as well as to client responders. |
| RSocketFactory | Deprecated
please use
RSocketConnector and RSocketServer. |
| RSocketFactory.ClientRSocketFactory |
Factory to create and configure an RSocket client, and connect to a server.
|
| RSocketFactory.ServerRSocketFactory |
Factory to create, configure, and start an RSocket server.
|
| Exception | Description |
|---|---|
| RSocketErrorException |
Exception that represents an RSocket protocol error.
|
RSocket for performing or handling RSocket interactions, SocketAcceptor for declaring responders, Payload for access to the
content of a payload, and others.
To connect to or start a server see RSocketConnector
and RSocketServer in io.rsocket.core.