public interface DataService
DataTransportService
the implementation
of the transport protocol used to interact with the remote server.
http://www.osgi.org/wiki/uploads/Links/whiteboard.pdf
is used to notify the service users about events such as message arrived, connection lost etc.
DataServiceListener
Modifier and Type | Method and Description |
---|---|
void |
connect()
Connects to the broker if not already connected.
|
void |
disconnect(long quiesceTimeout)
Disconnects from the broker.
|
List<Integer> |
getDroppedInFlightMessageIds(String topicRegex)
Finds the list of identifiers of in-flight messages that have been dropped.
|
List<Integer> |
getInFlightMessageIds(String topicRegex)
Finds the list of identifiers of messages that are still in-flight
(messages published but not confirmed yet).
|
List<Integer> |
getUnpublishedMessageIds(String topicRegex)
Finds the list of identifiers of messages that have not been published yet.
|
boolean |
isConnected()
Answers if the DataService is connected to the broker.
|
int |
publish(String topic,
byte[] payload,
int qos,
boolean retain,
int priority)
Publishes a message to the broker.
|
void |
subscribe(String topic,
int qos)
Subscribes to the specified topic with the remote server.
|
void |
unsubscribe(String topic)
Unubscribes to the specified topic with the remote server.
|
void connect() throws EsfConnectException
EsfConnectException
boolean isConnected()
void disconnect(long quiesceTimeout)
quiesceTimeout
- void subscribe(String topic, int qos) throws EsfTimeoutException, EsfException, EsfNotConnectedException
DataTransportService.subscribe(java.lang.String, int)
method.topic
- qos
- EsfTimeoutException
EsfException
EsfNotConnectedException
- TODOvoid unsubscribe(String topic) throws EsfTimeoutException, EsfException, EsfNotConnectedException
DataTransportService.unsubscribe(java.lang.String)
method.topic
- EsfTimeoutException
EsfException
EsfNotConnectedException
- TODOint publish(String topic, byte[] payload, int qos, boolean retain, int priority) throws EsfStoreException
DataServiceListener.onMessageConfirmed(int, java.lang.String)
callback.
A unique identifier is always returned, independently on the specified
QoS or priority level, which can be used to match the asynchronous
message confirm.
The actual semantics associated to a message confirm is as follows:
topic
- payload
- qos
- retain
- priority
- EsfStoreException
List<Integer> getUnpublishedMessageIds(String topicRegex) throws EsfStoreException
topicRegex
- EsfStoreException
List<Integer> getInFlightMessageIds(String topicRegex) throws EsfStoreException
topicRegex
- EsfStoreException
List<Integer> getDroppedInFlightMessageIds(String topicRegex) throws EsfStoreException
EsfStoreException
Copyright © 2013. All Rights Reserved.