接口 RSocketServer
- 所有已知实现类:
NettyRSocketServer
public interface RSocketServer
Simple interface that represents a fully configured RSocket server. Allows the server
to be
started
and stopped
.- 从以下版本开始:
- 2.2.0
- 作者:
- Brian Clozel
-
方法详细资料
-
start
Starts the RSocket server. Calling this method on an already started server has no effect.- 抛出:
RSocketServerException
- if the server cannot be started
-
stop
Stops the RSocket server. Calling this method on an already stopped server has no effect.- 抛出:
RSocketServerException
- if the server cannot be stopped
-
address
InetSocketAddress address()Return the address this server is listening on.- 返回:
- the address
-