Skip navigation links
A C D E G I K L M P Q R S T U W 

A

accept(boolean) - Method in interface io.vertx.mqtt.MqttEndpoint
Sends the CONNACK message to the remote MQTT client with "connection accepted" return code.
actualPort() - Method in interface io.vertx.mqtt.MqttServer
The actual port the server is listening on.
addCrlPath(String) - Method in class io.vertx.mqtt.MqttServerOptions
 
addCrlValue(Buffer) - Method in class io.vertx.mqtt.MqttServerOptions
 
addEnabledCipherSuite(String) - Method in class io.vertx.mqtt.MqttServerOptions
 
addEnabledSecureTransportProtocol(String) - Method in class io.vertx.mqtt.MqttServerOptions
 
auth() - Method in interface io.vertx.mqtt.MqttEndpoint
 
autoKeepAlive(boolean) - Method in interface io.vertx.mqtt.MqttEndpoint
Enable/disable auto keep alive (sending ping response)

C

clientIdentifier() - Method in interface io.vertx.mqtt.MqttEndpoint
 
close() - Method in interface io.vertx.mqtt.MqttEndpoint
Close the endpoint, so the connection with remote MQTT client
close() - Method in interface io.vertx.mqtt.MqttServer
Close the server.
close(Handler<AsyncResult<Void>>) - Method in interface io.vertx.mqtt.MqttServer
Close the server supplying an handler that will be called when the server is actually closed (or has failed).
closeHandler(Handler<Void>) - Method in interface io.vertx.mqtt.MqttEndpoint
Set a close handler.
create(int, MqttQoS, boolean, boolean, String, ByteBuf) - Static method in interface io.vertx.mqtt.messages.MqttPublishMessage
Create a concrete instance of a Vert.x publish message
create(int, List<MqttTopicSubscription>) - Static method in interface io.vertx.mqtt.messages.MqttSubscribeMessage
Create a concrete instance of a Vert.x subscribe message
create(int, List<String>) - Static method in interface io.vertx.mqtt.messages.MqttUnsubscribeMessage
Create a concrete instance of a Vert.x unsubscribe message
create(Vertx, MqttServerOptions) - Static method in interface io.vertx.mqtt.MqttServer
Return an MQTT server instance
create(Vertx) - Static method in interface io.vertx.mqtt.MqttServer
Return an MQTT server instance using default options

D

DEFAULT_MAX_MESSAGE_SIZE - Static variable in class io.vertx.mqtt.MqttServerOptions
 
DEFAULT_PORT - Static variable in class io.vertx.mqtt.MqttServerOptions
 
DEFAULT_TLS_PORT - Static variable in class io.vertx.mqtt.MqttServerOptions
 
disconnectHandler(Handler<Void>) - Method in interface io.vertx.mqtt.MqttEndpoint
Set a disconnect handler on the MQTT endpoint.

E

endpointHandler(Handler<MqttEndpoint>) - Method in interface io.vertx.mqtt.MqttServer
Set the endpoint handler for the server.
exceptionHandler(Handler<Throwable>) - Method in interface io.vertx.mqtt.MqttEndpoint
Set an exception handler.
exceptionHandler(Handler<Throwable>) - Method in interface io.vertx.mqtt.MqttServer
Set an exception handler for the server, that will be called when an error happens independantly of an accepted MqttEndpoint, like a rejected connection

G

getMaxMessageSize() - Method in class io.vertx.mqtt.MqttServerOptions
 

I

io.vertx.mqtt - package io.vertx.mqtt
= Vert.x MQTT server This component provides a server which is able to handle connections, communication and messages exchange with remote link:http://mqtt.org/[MQTT] clients.
io.vertx.mqtt.messages - package io.vertx.mqtt.messages
 
isAutoClientId() - Method in class io.vertx.mqtt.MqttServerOptions
 
isAutoKeepAlive() - Method in interface io.vertx.mqtt.MqttEndpoint
 
isCleanSession() - Method in interface io.vertx.mqtt.MqttEndpoint
 
isConnected() - Method in interface io.vertx.mqtt.MqttEndpoint
 
isDup() - Method in interface io.vertx.mqtt.messages.MqttPublishMessage
 
isPublishAutoAck() - Method in interface io.vertx.mqtt.MqttEndpoint
 
isRetain() - Method in interface io.vertx.mqtt.messages.MqttPublishMessage
 
isSubscriptionAutoAck() - Method in interface io.vertx.mqtt.MqttEndpoint
 
isWillFlag() - Method in interface io.vertx.mqtt.MqttWill
 
isWillRetain() - Method in interface io.vertx.mqtt.MqttWill
 

K

keepAliveTimeSeconds() - Method in interface io.vertx.mqtt.MqttEndpoint
 

L

lastMessageId() - Method in interface io.vertx.mqtt.MqttEndpoint
 
listen() - Method in interface io.vertx.mqtt.MqttServer
Start the server listening for incoming connections using the specified options through the constructor
listen(int, String) - Method in interface io.vertx.mqtt.MqttServer
Start the server listening for incoming connections on the port and host specified
listen(int, String, Handler<AsyncResult<MqttServer>>) - Method in interface io.vertx.mqtt.MqttServer
Start the server listening for incoming connections on the port and host specified It ignores any options specified through the constructor
listen(int) - Method in interface io.vertx.mqtt.MqttServer
Start the server listening for incoming connections on the port specified but on "0.0.0.0" as host.
listen(int, Handler<AsyncResult<MqttServer>>) - Method in interface io.vertx.mqtt.MqttServer
Start the server listening for incoming connections on the port specified but on "0.0.0.0" as host.
listen(Handler<AsyncResult<MqttServer>>) - Method in interface io.vertx.mqtt.MqttServer
Start the server listening for incoming connections using the specified options through the constructor

M

messageId() - Method in interface io.vertx.mqtt.messages.MqttMessage
 
MqttAuth - Interface in io.vertx.mqtt
MQTT authentication information
MqttEndpoint - Interface in io.vertx.mqtt
Represents an MQTT endpoint for point-to-point communication with the remote MQTT client
MqttMessage - Interface in io.vertx.mqtt.messages
Represent the interface for each MQTT message
MqttPublishMessage - Interface in io.vertx.mqtt.messages
Represents an MQTT PUBLISH message
MqttServer - Interface in io.vertx.mqtt
An MQTT server
MqttServerOptions - Class in io.vertx.mqtt
Represents options used by the MQTT server
MqttServerOptions() - Constructor for class io.vertx.mqtt.MqttServerOptions
Default constructor
MqttServerOptions(JsonObject) - Constructor for class io.vertx.mqtt.MqttServerOptions
Create an options from JSON
MqttServerOptions(MqttServerOptions) - Constructor for class io.vertx.mqtt.MqttServerOptions
Copy constructor
MqttSubscribeMessage - Interface in io.vertx.mqtt.messages
Represents an MQTT SUBSCRIBE message
MqttTopicSubscription - Interface in io.vertx.mqtt
Represents a subscription to a topic
MqttUnsubscribeMessage - Interface in io.vertx.mqtt.messages
Represents an MQTT UNSUBSCRIBE message
MqttWill - Interface in io.vertx.mqtt
Will information from the remote MQTT client

P

password() - Method in interface io.vertx.mqtt.MqttAuth
 
payload() - Method in interface io.vertx.mqtt.messages.MqttPublishMessage
 
pingHandler(Handler<Void>) - Method in interface io.vertx.mqtt.MqttEndpoint
Set the pingreq handler on the MQTT endpoint.
pong() - Method in interface io.vertx.mqtt.MqttEndpoint
Sends the PINGRESP message to the remote MQTT client
protocolName() - Method in interface io.vertx.mqtt.MqttEndpoint
 
protocolVersion() - Method in interface io.vertx.mqtt.MqttEndpoint
 
publish(String, Buffer, MqttQoS, boolean, boolean) - Method in interface io.vertx.mqtt.MqttEndpoint
Sends the PUBLISH message to the remote MQTT client
publishAcknowledge(int) - Method in interface io.vertx.mqtt.MqttEndpoint
Sends the PUBACK message to the remote MQTT client
publishAcknowledgeHandler(Handler<Integer>) - Method in interface io.vertx.mqtt.MqttEndpoint
Set the puback handler on the MQTT endpoint.
publishAutoAck(boolean) - Method in interface io.vertx.mqtt.MqttEndpoint
Enable/disable publishing (in/out) auto acknowledge
publishComplete(int) - Method in interface io.vertx.mqtt.MqttEndpoint
Sends the PUBCOMP message to the remote MQTT client
publishCompleteHandler(Handler<Integer>) - Method in interface io.vertx.mqtt.MqttEndpoint
Set the pubcomp handler on the MQTT endpoint.
publishHandler(Handler<MqttPublishMessage>) - Method in interface io.vertx.mqtt.MqttEndpoint
Set the publish handler on the MQTT endpoint.
publishReceived(int) - Method in interface io.vertx.mqtt.MqttEndpoint
Sends the PUBREC message to the remote MQTT client
publishReceivedHandler(Handler<Integer>) - Method in interface io.vertx.mqtt.MqttEndpoint
Set the pubrec handler on the MQTT endpoint.
publishRelease(int) - Method in interface io.vertx.mqtt.MqttEndpoint
Sends the PUBREL message to the remote MQTT client
publishReleaseHandler(Handler<Integer>) - Method in interface io.vertx.mqtt.MqttEndpoint
Set the pubrel handler on the MQTT endpoint.

Q

qosLevel() - Method in interface io.vertx.mqtt.messages.MqttPublishMessage
 
qualityOfService() - Method in interface io.vertx.mqtt.MqttTopicSubscription
 

R

reject(MqttConnectReturnCode) - Method in interface io.vertx.mqtt.MqttEndpoint
Sends the CONNACK message to the remote MQTT client rejecting the connection request with specified return code.

S

setAutoClientId(boolean) - Method in class io.vertx.mqtt.MqttServerOptions
Set if clientid should be auto-generated when it's "zero-bytes"
setClientIdentifier(String) - Method in interface io.vertx.mqtt.MqttEndpoint
Set client identifier if not provided by the remote MQTT client (zero-bytes)
setHost(String) - Method in class io.vertx.mqtt.MqttServerOptions
 
setKeyCertOptions(KeyCertOptions) - Method in class io.vertx.mqtt.MqttServerOptions
 
setKeyStoreOptions(JksOptions) - Method in class io.vertx.mqtt.MqttServerOptions
 
setMaxMessageSize(int) - Method in class io.vertx.mqtt.MqttServerOptions
Set max MQTT message size
setPemKeyCertOptions(PemKeyCertOptions) - Method in class io.vertx.mqtt.MqttServerOptions
 
setPemTrustOptions(PemTrustOptions) - Method in class io.vertx.mqtt.MqttServerOptions
 
setPfxKeyCertOptions(PfxOptions) - Method in class io.vertx.mqtt.MqttServerOptions
 
setPfxTrustOptions(PfxOptions) - Method in class io.vertx.mqtt.MqttServerOptions
 
setPort(int) - Method in class io.vertx.mqtt.MqttServerOptions
 
setReceiveBufferSize(int) - Method in class io.vertx.mqtt.MqttServerOptions
 
setSsl(boolean) - Method in class io.vertx.mqtt.MqttServerOptions
 
setTrustOptions(TrustOptions) - Method in class io.vertx.mqtt.MqttServerOptions
 
setTrustStoreOptions(JksOptions) - Method in class io.vertx.mqtt.MqttServerOptions
 
subscribeAcknowledge(int, List<MqttQoS>) - Method in interface io.vertx.mqtt.MqttEndpoint
Sends the SUBACK message to the remote MQTT client
subscribeHandler(Handler<MqttSubscribeMessage>) - Method in interface io.vertx.mqtt.MqttEndpoint
Set a subscribe handler on the MQTT endpoint.
subscriptionAutoAck(boolean) - Method in interface io.vertx.mqtt.MqttEndpoint
Enable/disable subscription/unsubscription requests auto acknowledge

T

topicName() - Method in interface io.vertx.mqtt.messages.MqttPublishMessage
 
topicName() - Method in interface io.vertx.mqtt.MqttTopicSubscription
 
topics() - Method in interface io.vertx.mqtt.messages.MqttUnsubscribeMessage
 
topicSubscriptions() - Method in interface io.vertx.mqtt.messages.MqttSubscribeMessage
 

U

unsubscribeAcknowledge(int) - Method in interface io.vertx.mqtt.MqttEndpoint
Sends the UNSUBACK message to the remote MQTT client
unsubscribeHandler(Handler<MqttUnsubscribeMessage>) - Method in interface io.vertx.mqtt.MqttEndpoint
Set a unsubscribe handler on the MQTT endpoint.
userName() - Method in interface io.vertx.mqtt.MqttAuth
 

W

will() - Method in interface io.vertx.mqtt.MqttEndpoint
 
willMessage() - Method in interface io.vertx.mqtt.MqttWill
 
willQos() - Method in interface io.vertx.mqtt.MqttWill
 
willTopic() - Method in interface io.vertx.mqtt.MqttWill
 
A C D E G I K L M P Q R S T U W 
Skip navigation links

Copyright © 2017. All rights reserved.