Package | Description |
---|---|
io.vertx.ext.stomp | |
io.vertx.reactivex.ext.stomp | |
io.vertx.rxjava.ext.stomp |
Modifier and Type | Method and Description |
---|---|
StompServerOptions |
StompServer.options() |
StompServerOptions |
StompServerOptions.setHeartbeat(JsonObject heartbeat)
Sets the heartbeat configuration.
|
StompServerOptions |
StompServerOptions.setHost(String host) |
StompServerOptions |
StompServerOptions.setMaxBodyLength(int maxBodyLength)
Sets the max body length accepted by the server.
|
StompServerOptions |
StompServerOptions.setMaxFrameInTransaction(int maxFrameInTransaction)
Sets the maximum number of frame that can be added in a transaction.
|
StompServerOptions |
StompServerOptions.setMaxHeaderLength(int maxHeaderLength)
Sets the max header length.
|
StompServerOptions |
StompServerOptions.setMaxHeaders(int maxHeaders)
Sets the maximum number of headers.
|
StompServerOptions |
StompServerOptions.setMaxSubscriptionsByClient(int maxSubscriptionsByClient)
Sets the maximum of subscriptions a client is allowed to register.
|
StompServerOptions |
StompServerOptions.setPort(int port)
Sets the port on which the server is going to listen for TCP connection.
|
StompServerOptions |
StompServerOptions.setSecured(boolean secured)
Enables or disables the server security feature.
|
StompServerOptions |
StompServerOptions.setSendErrorOnNoSubscriptions(boolean sendErrorOnNoSubscriptions)
Sets whether or not an error is sent to the client when this client sends a message to an not subscribed
destinations (no subscriptions on this destination).
|
StompServerOptions |
StompServerOptions.setSsl(boolean ssl) |
StompServerOptions |
StompServerOptions.setSupportedVersions(List<String> supportedVersions)
Sets the STOMP protocol versions supported by the server.
|
StompServerOptions |
StompServerOptions.setTimeFactor(int timeFactor)
Sets the time factor.
|
StompServerOptions |
StompServerOptions.setTrailingLine(boolean trailingLine)
Sets whether or not an empty line should be appended to the written STOMP frame.
|
StompServerOptions |
StompServerOptions.setTransactionChunkSize(int transactionChunkSize)
Sets the chunk size when replaying a transaction.
|
StompServerOptions |
StompServerOptions.setWebsocketBridge(boolean websocketBridge)
Enables or disables the web socket bridge.
|
StompServerOptions |
StompServerOptions.setWebsocketPath(String websocketPath)
Sets the websocket path.
|
Modifier and Type | Method and Description |
---|---|
static StompServer |
StompServer.create(Vertx vertx,
NetServer net,
StompServerOptions options)
Creates a
StompServer based on the default Stomp Server implementation. |
static StompServer |
StompServer.create(Vertx vertx,
StompServerOptions options)
Creates a
StompServer based on the default Stomp Server implementation. |
static void |
StompServerOptionsConverter.fromJson(Iterable<Map.Entry<String,Object>> json,
StompServerOptions obj) |
static void |
StompServerOptionsConverter.toJson(StompServerOptions obj,
JsonObject json) |
static void |
StompServerOptionsConverter.toJson(StompServerOptions obj,
Map<String,Object> json) |
Constructor and Description |
---|
StompServerOptions(StompServerOptions other)
Copy constructor.
|
Modifier and Type | Method and Description |
---|---|
StompServerOptions |
StompServer.options() |
Modifier and Type | Method and Description |
---|---|
static StompServer |
StompServer.create(Vertx vertx,
NetServer net,
StompServerOptions options)
Creates a
StompServer based on the default Stomp Server implementation. |
static StompServer |
StompServer.create(Vertx vertx,
StompServerOptions options)
Creates a
StompServer based on the default Stomp Server implementation. |
Modifier and Type | Method and Description |
---|---|
StompServerOptions |
StompServer.options() |
Modifier and Type | Method and Description |
---|---|
static StompServer |
StompServer.create(Vertx vertx,
NetServer net,
StompServerOptions options)
Creates a
StompServer based on the default Stomp Server implementation. |
static StompServer |
StompServer.create(Vertx vertx,
StompServerOptions options)
Creates a
StompServer based on the default Stomp Server implementation. |
Copyright © 2021 Eclipse. All rights reserved.