Uses of Class
io.vertx.ext.stomp.StompClientOptions
-
Packages that use StompClientOptions Package Description io.vertx.ext.stomp io.vertx.reactivex.ext.stomp io.vertx.rxjava3.ext.stomp -
-
Uses of StompClientOptions in io.vertx.ext.stomp
Methods in io.vertx.ext.stomp that return StompClientOptions Modifier and Type Method Description StompClientOptions
StompClient. options()
StompClientOptions
StompClientOptions. setAcceptedVersions(List<String> acceptedVersions)
Sets the list of STOMP protocol versions accepted by the client.StompClientOptions
StompClientOptions. setAutoComputeContentLength(boolean autoComputeContentLength)
Sets whether or not the automatic computation of thecontent-length
header is enabled.StompClientOptions
StompClientOptions. setBypassHostHeader(boolean bypassHostHeader)
Sets whether or not thehost
header must be dropped from theCONNECT/STOMP
frame.StompClientOptions
StompClientOptions. setHeartbeat(JsonObject heartbeat)
Sets the heartbeat configuration.StompClientOptions
StompClientOptions. setHost(String host)
Sets the STOMP server host.StompClientOptions
StompClientOptions. setLogin(String login)
Sets the login to use if the STOMP server is secured.StompClientOptions
StompClientOptions. setPasscode(String passcode)
Sets the passcode to use if the STOMP server is secured.StompClientOptions
StompClientOptions. setPort(int port)
Sets the STOMP server port.StompClientOptions
StompClientOptions. setSsl(boolean ssl)
StompClientOptions
StompClientOptions. setTrailingLine(boolean trailingLine)
Sets whether or not an empty line should be appended to the written STOMP frame.StompClientOptions
StompClientOptions. setUseStompFrame(boolean useStompFrame)
Sets whether or not the connection is made using theSTOMP
command instead of theCONNECT
command.StompClientOptions
StompClientOptions. setVirtualHost(String virtualHost)
Sets the virtual host that will be used as "host" header value in the `CONNECT` frame.Methods in io.vertx.ext.stomp with parameters of type StompClientOptions Modifier and Type Method Description static StompClient
StompClient. create(Vertx vertx, StompClientOptions options)
Creates aStompClient
using the default implementation.Constructors in io.vertx.ext.stomp with parameters of type StompClientOptions Constructor Description StompClientOptions(StompClientOptions other)
Copy constructor. -
Uses of StompClientOptions in io.vertx.reactivex.ext.stomp
Methods in io.vertx.reactivex.ext.stomp that return StompClientOptions Modifier and Type Method Description StompClientOptions
StompClient. options()
Methods in io.vertx.reactivex.ext.stomp with parameters of type StompClientOptions Modifier and Type Method Description static StompClient
StompClient. create(Vertx vertx, StompClientOptions options)
Creates aStompClient
using the default implementation. -
Uses of StompClientOptions in io.vertx.rxjava3.ext.stomp
Methods in io.vertx.rxjava3.ext.stomp that return StompClientOptions Modifier and Type Method Description StompClientOptions
StompClient. options()
Methods in io.vertx.rxjava3.ext.stomp with parameters of type StompClientOptions Modifier and Type Method Description static StompClient
StompClient. create(Vertx vertx, StompClientOptions options)
Creates aStompClient
using the default implementation.
-