Helper class to run Kanzi Connect remote service, and possible service clients in custom thread. More...
Public Member Functions | |
KanziConnectThreadRunner (Context context) | |
Constructor. | |
KanziConnectThreadRunner (Context context, int loglevel) | |
Constructor. | |
ClientConnector | getClientConnector () |
Retrieve client connector. | |
ClientConnector.State | getConnectionState () |
Returns the current connection state. | |
boolean | getLogging () |
Retrieve state of logging. | |
Looper | getLooper () |
Retrieve the looper of the thread. | |
boolean | initialize (StringMap connectionAttributes) |
Initialize the Connect context. | |
boolean | initialize (StringMap connectionAttributes, AbstractService service) |
Initialize the Connect context to run a remote service. | |
boolean | isConnected () |
Returns the current connection status whether connection has been established. | |
void | run () |
void | setLogging (boolean enable) |
Enable/Disable logging. | |
boolean | stopLooper () |
Stops the thread in safe manner. | |
Helper class to run Kanzi Connect remote service, and possible service clients in custom thread.
Allows very limited control to functionality so in case more complex operation is required this class can be customized accordingly.
This should be used in scenario when UI interaction is not required.
KanziConnectThreadRunner | ( | Context | context | ) |
Constructor.
context | the context for service. |
KanziConnectThreadRunner | ( | Context | context, |
int | loglevel ) |
Constructor.
context | the context for service. |
loglevel | logging level for kanzi connect core library 4 = trace 3 = info 2 = warning 1 = error |
ClientConnector getClientConnector | ( | ) |
Retrieve client connector.
ClientConnector.State getConnectionState | ( | ) |
Returns the current connection state.
boolean getLogging | ( | ) |
Retrieve state of logging.
Looper getLooper | ( | ) |
Retrieve the looper of the thread.
boolean initialize | ( | StringMap | connectionAttributes | ) |
Initialize the Connect context.
After successfull call it is possible to start the connector.
connectionAttributes | connection information, specifies the server to connect |
boolean initialize | ( | StringMap | connectionAttributes, |
AbstractService | service ) |
Initialize the Connect context to run a remote service.
connectionAttributes | connection information, specifies the server to connect |
service | the service to run. can be null. |
boolean isConnected | ( | ) |
Returns the current connection status whether connection has been established.
For more detailed state information and receiving state change callbacks see ClientConnector class returned by getClientConnector() method.
void setLogging | ( | boolean | enable | ) |
Enable/Disable logging.
By default logging is enabled.
enable | new state for logging. |
boolean stopLooper | ( | ) |
Stops the thread in safe manner.
Use this always to stop the functionality and do not call Thread.stop() to stop it.