Interface StompServer


public interface StompServer
Defines a STOMP server. STOMP servers delegates to a StompServerHandler that let customize the behavior of the server. By default, it uses a handler compliant with the STOMP specification, but let you change anything.
Author:
Clement Escoffier
  • Method Details

    • create

      static StompServer create(Vertx vertx, StompServerOptions options)
      Creates a StompServer based on the default Stomp Server implementation.
      Parameters:
      vertx - the vert.x instance to use
      options - the server options
      Returns:
      the created StompServer
    • create

      static StompServer create(Vertx vertx, NetServer netServer)
      Creates a StompServer based on the default Stomp Server implementation.
      Parameters:
      vertx - the vert.x instance to use
      netServer - the Net server used by the STOMP server
      Returns:
      the created StompServer
    • create

      static StompServer create(Vertx vertx, NetServer net, StompServerOptions options)
      Creates a StompServer based on the default Stomp Server implementation.
      Parameters:
      vertx - the vert.x instance to use
      net - the Net server used by the STOMP server
      options - the server options
      Returns:
      the created StompServer
    • create

      static StompServer create(Vertx vertx)
      Creates a StompServer 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

      StompServer handler(StompServerHandler handler)
      Configures the StompServerHandler. You must calls this method before calling the listen() method.
      Parameters:
      handler - the handler
      Returns:
      the current StompServer
    • listen

      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
    • listen

      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 port
      host - the interface
      Returns:
      a future resolved with the listen result
    • listen

      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
    • close

      Future<Void> close()
      Closes the server.
    • isListening

      boolean isListening()
      Checks whether or not the server is listening.
      Returns:
      true if the server is listening, false otherwise
    • actualPort

      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
      See Also:
    • options

      Returns:
      the server options
    • vertx

      Vertx vertx()
      Returns:
      the instance of vert.x used by the server.
    • stompHandler

      StompServerHandler stompHandler()
      Returns:
      the StompServerHandler used by this server.
    • webSocketHandshakeHandler

      Handler<ServerWebSocketHandshake> webSocketHandshakeHandler()
      Gets the Handler able to manage web socket connection handshakes. If the web socket bridge is disabled, it returns null.
      Returns:
      the handler that can be passed to HttpServer.webSocketHandshakeHandler(Handler).
    • webSocketHandler

      Handler<ServerWebSocket> webSocketHandler()
      Gets the Handler able to manage web socket connections. If the web socket bridge is disabled, it returns null.
      Returns:
      the handler that can be passed to HttpServer.webSocketHandler(Handler).
    • writingFrameHandler

      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 be null
      Returns:
      the current StompServer