| Package | Description |
|---|---|
| com.hivemq.spi.services | |
| com.hivemq.spi.services.configuration.listener | |
| com.hivemq.spi.services.rest | |
| com.hivemq.spi.services.rest.servlet | |
| com.hivemq.spi.util |
| Modifier and Type | Method and Description |
|---|---|
Set<String> |
SubscriptionStore.getLocalSubscribers(String topic)
Deprecated.
Use
BlockingSubscriptionStore or AsyncSubscriptionStore instead. |
Set<String> |
BlockingSubscriptionStore.getLocalSubscribers(String topic)
Returns all MQTT client subscriber identifiers for a given topic, for this HiveMQ instance.
|
com.google.common.util.concurrent.ListenableFuture<Set<String>> |
AsyncSubscriptionStore.getLocalSubscribers(String topic)
Returns all MQTT client subscriber identifiers for a given topic, for this HiveMQ instance.
|
com.google.common.collect.Multimap<String,Topic> |
SubscriptionStore.getLocalSubscriptions()
Deprecated.
Use
BlockingSubscriptionStore or AsyncSubscriptionStore instead. |
com.google.common.collect.Multimap<String,Topic> |
BlockingSubscriptionStore.getLocalSubscriptions()
This method returns all subscriptions on this HiveMQ Node as a
Multimap of client identifiers and topics. |
com.google.common.util.concurrent.ListenableFuture<com.google.common.collect.Multimap<String,Topic>> |
AsyncSubscriptionStore.getLocalSubscriptions()
This method returns all subscriptions on this HiveMQ Node as a
Multimap of client identifiers and topics. |
Set<Topic> |
SubscriptionStore.getLocalTopics(String clientID)
Deprecated.
Use
BlockingSubscriptionStore or AsyncSubscriptionStore instead. |
Set<Topic> |
BlockingSubscriptionStore.getLocalTopics(String clientID)
Returns all topics a client is subscribed to, on this HiveMQ instance.
|
com.google.common.util.concurrent.ListenableFuture<Set<Topic>> |
AsyncSubscriptionStore.getLocalTopics(String clientID)
Returns all topics a client is subscribed to, on this HiveMQ instance.
|
List<String> |
SharedSubscriptionService.getSharedSubscriptions()
Deprecated.
Since 3.1 Shared subscriptions are created by using a specific marker in the topic.
Use
BlockingSubscriptionStore or AsyncSubscriptionStore to create such subscriptions.
See the HiveMQ documentation about shared subscriptions for more detailed information. |
com.google.common.util.concurrent.ListenableFuture<Set<String>> |
SubscriptionStore.getSubscribers(String topic)
Deprecated.
Use
BlockingSubscriptionStore or AsyncSubscriptionStore instead. |
Set<String> |
BlockingSubscriptionStore.getSubscribers(String topic)
Returns all MQTT client subscriber identifiers for a given topic, this HiveMQ instance and all other nodes in a HiveMQ cluster.
|
com.google.common.util.concurrent.ListenableFuture<Set<String>> |
AsyncSubscriptionStore.getSubscribers(String topic)
Returns all MQTT client subscriber identifiers for a given topic, this HiveMQ instance and all other nodes in a HiveMQ cluster.
|
com.google.common.util.concurrent.ListenableFuture<com.google.common.collect.Multimap<String,Topic>> |
SubscriptionStore.getSubscriptions()
Deprecated.
Use
BlockingSubscriptionStore or AsyncSubscriptionStore instead. |
com.google.common.collect.Multimap<String,Topic> |
BlockingSubscriptionStore.getSubscriptions()
This method returns all subscriptions this HiveMQ instance and all other nodes in a HiveMQ cluster,
as a
Multimap of client identifiers and topics. |
com.google.common.util.concurrent.ListenableFuture<com.google.common.collect.Multimap<String,Topic>> |
AsyncSubscriptionStore.getSubscriptions()
This method returns all subscriptions this HiveMQ instance and all other nodes in a HiveMQ cluster,
as a
Multimap of client identifiers and topics. |
com.google.common.util.concurrent.ListenableFuture<Set<Topic>> |
SubscriptionStore.getTopics(String clientID)
Deprecated.
Use
BlockingSubscriptionStore or AsyncSubscriptionStore instead. |
Set<Topic> |
BlockingSubscriptionStore.getTopics(String clientID)
Returns all topics a client is subscribed to, on this HiveMQ instance and all other nodes in a HiveMQ cluster.
|
com.google.common.util.concurrent.ListenableFuture<Set<Topic>> |
AsyncSubscriptionStore.getTopics(String clientID)
Returns all topics a client is subscribed to, on this HiveMQ instance and all other nodes in a HiveMQ cluster.
|
| Modifier and Type | Method and Description |
|---|---|
List<Listener> |
ListenerConfigurationService.getListeners() |
List<TcpListener> |
ListenerConfigurationService.getTcpListeners() |
List<TlsTcpListener> |
ListenerConfigurationService.getTlsTcpListeners() |
List<TlsWebsocketListener> |
ListenerConfigurationService.getTlsWebsocketListeners() |
List<WebsocketListener> |
ListenerConfigurationService.getWebsocketListeners() |
| Modifier and Type | Method and Description |
|---|---|
Collection<Listener> |
RESTService.getListeners()
Returns an immutable view of all listeners.
|
| Modifier and Type | Method and Description |
|---|---|
List<javax.servlet.DispatcherType> |
ServletFilter.getDispatcherTypes()
Returns a immutable list of all supported Dispatcher types by that filter
|
| Modifier and Type | Method and Description |
|---|---|
List<String> |
DefaultSslEngineUtil.getEnabledCipherSuites()
Returns a list of all enabled cipher suites of the JVM
|
List<String> |
DefaultSslEngineUtil.getEnabledProtocols()
Returns a list of all enabled protocols of the JVM
|
List<String> |
DefaultSslEngineUtil.getSupportedCipherSuites()
Returns a list of all supported Cipher Suites of the JVM.
|
List<String> |
DefaultSslEngineUtil.getSupportedProtocols()
Returns a list of all supported protocols by the JVM.
|
Copyright © 2013-2018 dc-square GmbH. All Rights Reserved.