Package | Description |
---|---|
io.vertx.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) |
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.setTransactionChunkSize(int transactionChunkSize)
Sets the chunk size when replaying a transaction.
|
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(JsonObject json,
StompServerOptions obj) |
static void |
StompServerOptionsConverter.toJson(StompServerOptions obj,
JsonObject 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. |
Copyright © 2015. All rights reserved.