Package io.vertx.reactivex.ext.stomp
Class StompServer
- java.lang.Object
-
- io.vertx.reactivex.ext.stomp.StompServer
-
public class StompServer extends Object
Defines a STOMP server. STOMP servers delegates to aStompServerHandler
that let customize the behavior of the server. By default, it uses a handler compliant with the STOMP specification, but let you change anything.NOTE: This class has been automatically generated from the
original
non RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<StompServer>
__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description StompServer(StompServer delegate)
StompServer(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
actualPort()
Gets the port on which the server is listening.Future<Void>
close()
Closes the server.static StompServer
create(Vertx vertx)
Creates aStompServer
based on the default Stomp Server implementation, and use the default options.static StompServer
create(Vertx vertx, StompServerOptions options)
Creates aStompServer
based on the default Stomp Server implementation.static StompServer
create(Vertx vertx, NetServer netServer)
Creates aStompServer
based on the default Stomp Server implementation.static StompServer
create(Vertx vertx, NetServer net, StompServerOptions options)
Creates aStompServer
based on the default Stomp Server implementation.boolean
equals(Object o)
StompServer
getDelegate()
StompServer
handler(StompServerHandler handler)
Configures theStompServerHandler
.int
hashCode()
boolean
isListening()
Checks whether or not the server is listening.Future<StompServer>
listen()
Connects the STOMP server default port (61613) and network interface (0.0.0.0
).Future<StompServer>
listen(int port)
Connects the STOMP server to the given port.Future<StompServer>
listen(int port, String host)
Connects the STOMP server to the given port / interface.static StompServer
newInstance(StompServer arg)
StompServerOptions
options()
Completable
rxClose()
Closes the server.Single<StompServer>
rxListen()
Connects the STOMP server default port (61613) and network interface (0.0.0.0
).Single<StompServer>
rxListen(int port)
Connects the STOMP server to the given port.Single<StompServer>
rxListen(int port, String host)
Connects the STOMP server to the given port / interface.StompServerHandler
stompHandler()
String
toString()
Vertx
vertx()
Handler<ServerWebSocket>
webSocketHandler()
Gets the able to manage web socket connections.Handler<ServerWebSocketHandshake>
webSocketHandshakeHandler()
Gets the able to manage web socket connection handshakes.StompServer
writingFrameHandler(Handler<ServerFrame> handler)
Configures the handler that is invoked every time a frame is going to be written to the "wire".
-
-
-
Field Detail
-
__TYPE_ARG
public static final io.vertx.lang.rx.TypeArg<StompServer> __TYPE_ARG
-
-
Constructor Detail
-
StompServer
public StompServer(StompServer delegate)
-
StompServer
public StompServer(Object delegate)
-
-
Method Detail
-
getDelegate
public StompServer getDelegate()
-
create
public static StompServer create(Vertx vertx, StompServerOptions options)
Creates aStompServer
based on the default Stomp Server implementation.- Parameters:
vertx
- the vert.x instance to useoptions
- the server options- Returns:
- the created
StompServer
-
create
public static StompServer create(Vertx vertx, NetServer netServer)
Creates aStompServer
based on the default Stomp Server implementation.- Parameters:
vertx
- the vert.x instance to usenetServer
- the Net server used by the STOMP server- Returns:
- the created
StompServer
-
create
public static StompServer create(Vertx vertx, NetServer net, StompServerOptions options)
Creates aStompServer
based on the default Stomp Server implementation.- Parameters:
vertx
- the vert.x instance to usenet
- the Net server used by the STOMP serveroptions
- the server options- Returns:
- the created
StompServer
-
create
public static StompServer create(Vertx vertx)
Creates aStompServer
based on the default Stomp Server implementation, and use the default options.- Parameters:
vertx
- the vert.x instance to use- Returns:
- the created
StompServer
-
handler
public StompServer handler(StompServerHandler handler)
Configures theStompServerHandler
. You must calls this method before calling thelisten(int)
method.- Parameters:
handler
- the handler- Returns:
- the current
StompServer
-
listen
public Future<StompServer> listen(int port)
Connects the STOMP server to the given port. This method use the default host (0.0.0.0
). Once the socket it bounds calls the given handler with the result. The result may be a failure if the socket is already used.- Parameters:
port
- the port- Returns:
- a future resolved with the listen result
-
rxListen
public Single<StompServer> rxListen(int port)
Connects the STOMP server to the given port. This method use the default host (0.0.0.0
). Once the socket it bounds calls the given handler with the result. The result may be a failure if the socket is already used.- Parameters:
port
- the port- Returns:
- a future resolved with the listen result
-
listen
public Future<StompServer> listen(int port, String host)
Connects the STOMP server to the given port / interface. Once the socket it bounds calls the given handler with the result. The result may be a failure if the socket is already used.- Parameters:
port
- the porthost
- the interface- Returns:
- a future resolved with the listen result
-
rxListen
public Single<StompServer> rxListen(int port, String host)
Connects the STOMP server to the given port / interface. Once the socket it bounds calls the given handler with the result. The result may be a failure if the socket is already used.- Parameters:
port
- the porthost
- the interface- Returns:
- a future resolved with the listen result
-
listen
public Future<StompServer> listen()
Connects the STOMP server default port (61613) and network interface (0.0.0.0
). Once the socket it bounds calls the given handler with the result. The result may be a failure if the socket is already used.- Returns:
- a future resolved with the listen result
-
rxListen
public Single<StompServer> rxListen()
Connects the STOMP server default port (61613) and network interface (0.0.0.0
). Once the socket it bounds calls the given handler with the result. The result may be a failure if the socket is already used.- Returns:
- a future resolved with the listen result
-
rxClose
public Completable rxClose()
Closes the server.- Returns:
-
isListening
public boolean isListening()
Checks whether or not the server is listening.- Returns:
true
if the server is listening,false
otherwise
-
actualPort
public int actualPort()
Gets the port on which the server is listening. This is useful if you bound the server specifying 0 as port number signifying an ephemeral port.- Returns:
- the port
-
options
public StompServerOptions options()
- Returns:
- the server options
-
vertx
public Vertx vertx()
- Returns:
- the instance of vert.x used by the server.
-
stompHandler
public StompServerHandler stompHandler()
- Returns:
- the
StompServerHandler
used by this server.
-
webSocketHandshakeHandler
public Handler<ServerWebSocketHandshake> webSocketHandshakeHandler()
Gets the able to manage web socket connection handshakes. If the web socket bridge is disabled, it returnsnull
.- Returns:
- the handler that can be passed to
HttpServer.webSocketHandshakeHandler(io.vertx.core.Handler<io.vertx.reactivex.core.http.ServerWebSocketHandshake>)
.
-
webSocketHandler
public Handler<ServerWebSocket> webSocketHandler()
Gets the able to manage web socket connections. If the web socket bridge is disabled, it returnsnull
.- Returns:
- the handler that can be passed to
HttpServer.webSocketHandler(io.vertx.core.Handler<io.vertx.reactivex.core.http.ServerWebSocket>)
.
-
writingFrameHandler
public StompServer writingFrameHandler(Handler<ServerFrame> handler)
Configures the handler that is invoked every time a frame is going to be written to the "wire". It lets you log the frames, but also adapt the frame if needed.- Parameters:
handler
- the handler, must not benull
- Returns:
- the current
StompServer
-
newInstance
public static StompServer newInstance(StompServer arg)
-
-