Package com.zopim.android.sdk.api
Interface ChatSession
-
- All Known Implementing Classes:
- ZopimChatApi
public interface ChatSession
Interface definition of the chat sessionDefines set of defaults and constraints for configuring chat session timeouts.
-
-
Field Summary
Fields Modifier and Type Field and Description static java.lang.String
ACTION_CHAT_APP_BACKGROUND
Intent action notifying that the app has moved to background.static java.lang.String
ACTION_CHAT_APP_FOREGROUND
Intent action notifying that the app has moved to foreground.static java.lang.String
ACTION_CHAT_BACKGROUND
Intent action notifying that the primary chat messages UI has paused.static java.lang.String
ACTION_CHAT_FOREGROUND
Intent action notifying that the primary chat messages UI has resumed.static java.lang.String
ACTION_CHAT_INITIALIZATION_TIMEOUT
Defines the action for chat initialization timeout.static java.lang.String
ACTION_CHAT_SESSION_TIMEOUT
Defined the action for chat session timeout.static long
DEFAULT_CHAT_INITIALIZATION_TIMEOUT
Defines default chat initialization timeout.static long
DEFAULT_CHAT_SESSION_TIMEOUT
Defines default chat session timeout.static long
DEFAULT_RECONNECT_TIMEOUT
Defines default reconnect timeout.
-
-
-
Field Detail
-
ACTION_CHAT_INITIALIZATION_TIMEOUT
static final java.lang.String ACTION_CHAT_INITIALIZATION_TIMEOUT
Defines the action for chat initialization timeout. Registerandroid.content.BroadcastReceiver
to filterandroid.content.IntentFilter#addAction(String)
intents with this action.- See Also:
- Constant Field Values
-
ACTION_CHAT_SESSION_TIMEOUT
static final java.lang.String ACTION_CHAT_SESSION_TIMEOUT
Defined the action for chat session timeout. Registerandroid.content.BroadcastReceiver
to filterandroid.content.IntentFilter#addAction(String)
intents with this action.- See Also:
- Constant Field Values
-
ACTION_CHAT_BACKGROUND
static final java.lang.String ACTION_CHAT_BACKGROUND
Intent action notifying that the primary chat messages UI has paused.- See Also:
- Constant Field Values
-
ACTION_CHAT_FOREGROUND
static final java.lang.String ACTION_CHAT_FOREGROUND
Intent action notifying that the primary chat messages UI has resumed.- See Also:
- Constant Field Values
-
ACTION_CHAT_APP_FOREGROUND
static final java.lang.String ACTION_CHAT_APP_FOREGROUND
Intent action notifying that the app has moved to foreground.- See Also:
- Constant Field Values
-
ACTION_CHAT_APP_BACKGROUND
static final java.lang.String ACTION_CHAT_APP_BACKGROUND
Intent action notifying that the app has moved to background.- See Also:
- Constant Field Values
-
DEFAULT_CHAT_INITIALIZATION_TIMEOUT
static final long DEFAULT_CHAT_INITIALIZATION_TIMEOUT
Defines default chat initialization timeout. To specify different timeout useZopimChatApi.DefaultConfig.initializationTimeout(long)
-
DEFAULT_RECONNECT_TIMEOUT
static final long DEFAULT_RECONNECT_TIMEOUT
Defines default reconnect timeout. To specify different timeout useZopimChatApi.DefaultConfig.reconnectTimeout(long)
-
DEFAULT_CHAT_SESSION_TIMEOUT
static final long DEFAULT_CHAT_SESSION_TIMEOUT
Defines default chat session timeout. To specify different timeout useZopimChatApi.DefaultConfig.initializationTimeout(long)
-
-