| Package | Description |
|---|---|
| io.vertx.ext.stomp |
= Vert.x-Stomp
:toc: left
STOMP is the Simple (or Streaming) Text Orientated Messaging Protocol.
|
| Modifier and Type | Method and Description |
|---|---|
static Destination |
Destination.bridge(Vertx vertx,
BridgeOptions options) |
Destination |
DestinationFactory.create(Vertx vertx,
String name)
Creates a destination for the given address.
|
Destination |
Destination.dispatch(StompServerConnection connection,
Frame frame)
Dispatches the given frame.
|
Destination |
StompServerHandler.getDestination(String destination)
Gets the destination with the given name.
|
Destination |
StompServerHandler.getOrCreateDestination(String destination)
Gets a
Destination object if existing, or create a new one. |
static Destination |
Destination.queue(Vertx vertx,
String destination) |
Destination |
Destination.subscribe(StompServerConnection connection,
Frame frame)
Handles a subscription request to the current
Destination. |
static Destination |
Destination.topic(Vertx vertx,
String destination) |
Destination |
Destination.unsubscribeConnection(StompServerConnection connection)
Removes all subscriptions of the given connection
|
| Modifier and Type | Method and Description |
|---|---|
List<Destination> |
StompServerHandler.getDestinations() |
Copyright © 2018 Eclipse. All rights reserved.