| Interface | Description |
|---|---|
| GenericKaaClient |
Root interface for the Kaa client.
|
| KaaClient |
Base interface to operate with
Kaa library. |
| KaaClientPlatformContext |
Represents platform specific context for Kaa client initialization
|
| KaaClientStateListener |
Notifies about Kaa client state changes and errors
|
| Class | Description |
|---|---|
| AbstractKaaClient |
Abstract class that holds general elements of Kaa library.
|
| BaseKaaClient |
Auto-generated class based on user data structures.
|
| Kaa |
Creates new Kaa client based on
platform
context and optional state listener. |
| KaaClientProperties |
Service class to store base endpoint configuration
|
| SimpleKaaClientStateListener |
Provides Kaa Client implementation.
To start deal with Kaa, following steps should be done:
KaaDesktop kaaDesktop = new KaaDesktop();
KaaClient kaaClient = kaaDesktop.getClient();
// OR
KaaAndroid kaaAndroid = new KaaAndroid(androidContext);
KaaClient kaaClient = kaaAndroid.getClient();
// Access to all Kaa submodules through 'kaaClient' object
Copyright © 2015. All rights reserved.