Chat SDK for Android v1.2.1
agora java chat SDK
Classes | Public Member Functions | List of all members
io.agora.chat.PushManager Class Reference

Classes

enum  DisplayStyle
 
enum  EMPushAction
 
enum  PushRemindType
 

Public Member Functions

void enableOfflinePush () throws ChatException
 
void disableOfflinePush (int start, int end) throws ChatException
 
PushConfigs getPushConfigs ()
 
PushConfigs getPushConfigsFromServer () throws ChatException
 
void updatePushServiceForGroup (List< String > groupIds, boolean noPush) throws ChatException
 
void updatePushServiceForUsers (List< String > userIds, boolean noPush) throws ChatException
 
List< String > getNoPushGroups ()
 
List< String > getNoPushUsers ()
 
boolean updatePushNickname (String nickname) throws IllegalArgumentException, ChatException
 
void asyncUpdatePushNickname (String nickname, CallBack callback)
 
void updatePushDisplayStyle (DisplayStyle style) throws IllegalArgumentException, ChatException
 
void asyncUpdatePushDisplayStyle (DisplayStyle style, CallBack callback)
 
void setSilentModeForConversation (String conversationId, Conversation.ConversationType type, SilentModeParam param, ValueCallBack< SilentModeResult > callBack)
 
void clearRemindTypeForConversation (String conversationId, Conversation.ConversationType type, CallBack callBack)
 
void getSilentModeForConversation (String conversationId, Conversation.ConversationType type, ValueCallBack< SilentModeResult > callBack)
 
void setSilentModeForAll (SilentModeParam param, ValueCallBack< SilentModeResult > callBack)
 
void getSilentModeForAll (ValueCallBack< SilentModeResult > callBack)
 
void getSilentModeForConversations (List< Conversation > conversationList, ValueCallBack< Map< String, SilentModeResult > > callBack)
 
void setPreferredNotificationLanguage (String languageCode, CallBack callBack)
 
void getPreferredNotificationLanguage (ValueCallBack< String > callBack)
 
synchronized void bindDeviceToken (String notifierName, String deviceToken, CallBack callBack)
 
void setPushTemplate (String templateName, CallBack callBack)
 
void getPushTemplate (ValueCallBack< String > callBack)
 
void reportPushAction (JSONObject json, EMPushAction action, CallBack callBack)
 

Detailed Description

The message push configuration options.

Member Function Documentation

◆ asyncUpdatePushDisplayStyle()

void io.agora.chat.PushManager.asyncUpdatePushDisplayStyle ( DisplayStyle  style,
CallBack  callback 
)

Updates the display style of push notifications. The default value is DisplayStyle#SimpleBanner.

This is an asynchronous method.

Reference: For the asynchronous method, see updatePushDisplayStyle(DisplayStyle).

Parameters
styleThe display style of push notifications.

◆ asyncUpdatePushNickname()

void io.agora.chat.PushManager.asyncUpdatePushNickname ( String  nickname,
CallBack  callback 
)

Updates the push display nickname of the current user.

This is an asynchronous method.

If no nickname is set, the user ID of the message sender, instead of the nickname, is indicated in the notification bar. The nickname can be different from the nickname in user attributes. However, Agora recommends that you use the same nickname for both. Therefore, if either nickname is updated, the other should be changed at the same time. For example, if you change the nickname in the user profile (UserInfoManager#updateOwnInfo(UserInfo, ValueCallBack) or UserInfoManager#updateOwnInfoByAttribute(UserInfo.UserInfoType, String, ValueCallBack)), remember to call this method to update the push nickname to ensure consistency.

Reference: The synchronous method see updatePushNickname(String).

Parameters
nicknameThe push nickname, which is different from the nickname in user profiles.

◆ bindDeviceToken()

synchronized void io.agora.chat.PushManager.bindDeviceToken ( String  notifierName,
String  deviceToken,
CallBack  callBack 
)

Binds the device token to the chat server. If device token is null or "", the device token is unbound from the chat server.

Parameters
notifierNameThe current device ID: FCM - Sender ID; Hawei - App ID; Xiaomi - App ID; Meizu - App ID; OPPO - App Key; Vivo - App ID + "#" + App Key;
deviceTokenDevice token generated by the device manufacture.
callBack

◆ clearRemindTypeForConversation()

void io.agora.chat.PushManager.clearRemindTypeForConversation ( String  conversationId,
Conversation.ConversationType  type,
CallBack  callBack 
)

Clears the setting of offline push notification type for the conversation. After clearing, the conversation follows the settings of the current logged-in user PushManager#setSilentModeForAll(SilentModeParam, ValueCallBack).

Parameters
conversationIdThe conversation ID.
typeThe conversation type.
callBackThe completion callback, which contains the description of the cause to the failure.

◆ disableOfflinePush()

void io.agora.chat.PushManager.disableOfflinePush ( int  start,
int  end 
) throws ChatException

Do not push the offline messages within the specified time period (24-hour clock).

This is a synchronous method and blocks the current thread.

Parameters
startThe start hour.
endThe end hour.
Exceptions
ChatExceptionA description of the cause of the exception.
Deprecated:
Use PushManager#setSilentModeForAll(SilentModeParam, ValueCallBack) instead.

◆ enableOfflinePush()

void io.agora.chat.PushManager.enableOfflinePush ( ) throws ChatException

Turns on the offline push notification.

This is a synchronous method and blocks the current thread.

Exceptions
ChatException
Deprecated:
Deprecated. Use PushManager#setSilentModeForAll(SilentModeParam, ValueCallBack) instead.

◆ getNoPushGroups()

List< String > io.agora.chat.PushManager.getNoPushGroups ( )

Gets the list of groups for which the offline push notification is turned off.

This is a synchronous method and blocks the current thread.

Returns
The list of groups that blocked the push notification.
Deprecated:
Use PushManager#getSilentModeForConversation(String, Conversation.ConversationType, ValueCallBack) instead,get the DND Settings for each conversation to determine

◆ getNoPushUsers()

List< String > io.agora.chat.PushManager.getNoPushUsers ( )

Gets the list of user IDs with the offline push notification turned off from the cache.

Note: If you need to get the latest data, call {@Link EmpushManager# getPushConfigsFromServer()} before calling this method.

Returns
The list of users for which the offline push notification is turned off.
Deprecated:
Use PushManager#getSilentModeForConversation(String, Conversation.ConversationType, ValueCallBack) instead,get the DND Settings for each conversation to determine.

◆ getPreferredNotificationLanguage()

void io.agora.chat.PushManager.getPreferredNotificationLanguage ( ValueCallBack< String >  callBack)

Gets the preferred notification language set by the user.

Parameters
callBackThe completion callback, which contains the description of the cause to the failure.

◆ getPushConfigs()

PushConfigs io.agora.chat.PushManager.getPushConfigs ( )

Gets the push configurations from the cache.

Returns
The push configurations.

◆ getPushConfigsFromServer()

PushConfigs io.agora.chat.PushManager.getPushConfigsFromServer ( ) throws ChatException

Gets the push configurations from the server.

This is a synchronous method and blocks the current thread.

Returns
The push configurations.
Exceptions
ChatExceptionA description of the cause of the exception.

◆ getPushTemplate()

void io.agora.chat.PushManager.getPushTemplate ( ValueCallBack< String >  callBack)

Gets the push template for offline push notifications.

Parameters
callBackThe completion callback, which contains the description of the cause to the failure.

◆ getSilentModeForAll()

void io.agora.chat.PushManager.getSilentModeForAll ( ValueCallBack< SilentModeResult callBack)

Gets the do-not-disturb settings of the current login user.

Parameters
callBackThe completion callback, which contains the description of the cause to the failure.

◆ getSilentModeForConversation()

void io.agora.chat.PushManager.getSilentModeForConversation ( String  conversationId,
Conversation.ConversationType  type,
ValueCallBack< SilentModeResult callBack 
)

Gets the do-not-disturb settings of the conversation.

Parameters
conversationIdThe conversation ID.
typeThe conversation type.
callBackThe completion callback, which contains the description of the cause to the failure.

◆ getSilentModeForConversations()

void io.agora.chat.PushManager.getSilentModeForConversations ( List< Conversation conversationList,
ValueCallBack< Map< String, SilentModeResult > >  callBack 
)

Gets the do-not-disturb settings of specified conversations in batches.

Parameters
conversationListThe conversation list.
callBackThe completion callback, which contains the description of the cause to the failure.

◆ reportPushAction()

void io.agora.chat.PushManager.reportPushAction ( JSONObject  json,
EMPushAction  action,
CallBack  callBack 
)

Reports the push events.

This is an asynchronous method.

Parameters
jsonValue The value of the EPush field included in the push data.
actionPush event.
callBackThe completion callback, which contains the description of the cause to the failure.

◆ setPreferredNotificationLanguage()

void io.agora.chat.PushManager.setPreferredNotificationLanguage ( String  languageCode,
CallBack  callBack 
)

Sets the preferred language for push notifications.

Parameters
languageCodeThe language code.
callBackThe completion callback, which contains the description of the cause to the failure.

◆ setPushTemplate()

void io.agora.chat.PushManager.setPushTemplate ( String  templateName,
CallBack  callBack 
)

Sets the push template for offline push notifications.

Parameters
templateNameThe name of the push template.
callBackThe completion callback, which contains the description of the cause to the failure.

◆ setSilentModeForAll()

void io.agora.chat.PushManager.setSilentModeForAll ( SilentModeParam  param,
ValueCallBack< SilentModeResult callBack 
)

Sets the do-not-disturb mode for the current login user.

Parameters
paramThe do-not-disturb parameter.
callBackThe completion callback, which contains the description of the cause to the failure.

◆ setSilentModeForConversation()

void io.agora.chat.PushManager.setSilentModeForConversation ( String  conversationId,
Conversation.ConversationType  type,
SilentModeParam  param,
ValueCallBack< SilentModeResult callBack 
)

Sets the do-not-disturb mode of the conversation.

Parameters
conversationIdThe conversation ID.
typeThe conversation type.
paramThe do-not-disturb parameter.
callBackThe completion callback, which contains the description of the cause to the failure.

◆ updatePushDisplayStyle()

void io.agora.chat.PushManager.updatePushDisplayStyle ( DisplayStyle  style) throws IllegalArgumentException, ChatException

Updates the display style of push notifications. The default value is DisplayStyle#SimpleBanner.

Reference: For the asynchronous method, see asyncUpdatePushDisplayStyle(DisplayStyle, CallBack).

This is a synchronous method and blocks the current thread.

Parameters
styleThe display style of push notifications.

◆ updatePushNickname()

boolean io.agora.chat.PushManager.updatePushNickname ( String  nickname) throws IllegalArgumentException, ChatException

Updates the push display nickname of the current user. The nickname that is displayed in the push notification bar of the recipient's client when a message from the user is pushed. If no nickname is set, the user ID of the message sender, instead of the nickname, is indicated in the notification bar. The nickname can be different from the nickname in user attributes. However, Agora recommends that you use the same nickname for both. Therefore, if either nickname is updated, the other should be changed at the same time. For example, if you change the nickname in the user profile (UserInfoManager#updateOwnInfo(UserInfo, ValueCallBack) or UserInfoManager#updateOwnInfoByAttribute(UserInfo.UserInfoType, String, ValueCallBack)), remember to call this method to update the push nickname to ensure consistency.

For the asynchronous method, see asyncUpdatePushNickname(String, CallBack).

This is a synchronous method and blocks the current thread.

Parameters
nicknameThe push display nickname, which is different from the nickname in the user profile.

◆ updatePushServiceForGroup()

void io.agora.chat.PushManager.updatePushServiceForGroup ( List< String >  groupIds,
boolean  noPush 
) throws ChatException

Sets whether to turn on the offline push notification for the the specified groups.

This is a synchronous method and blocks the current thread.

Parameters
groupIdsThe list of groups.
noPush- true: Turns off the notification;
  • false: Turns on the notification.
Exceptions
ChatExceptionA description of the cause of the exception.
Deprecated:
Use PushManager#setSilentModeForConversation(String, Conversation.ConversationType, SilentModeParam, ValueCallBack) instead,set DND Settings for each session.

◆ updatePushServiceForUsers()

void io.agora.chat.PushManager.updatePushServiceForUsers ( List< String >  userIds,
boolean  noPush 
) throws ChatException

Sets whether to turn on the offline push notification for specified users.

Parameters
userIdsThe list of users.
noPush- true:turns off the notification;
  • false:turns on the notification.
Exceptions
ChatExceptionA description of the cause of the exception.
Deprecated:
Use PushManager#setSilentModeForConversation(String, Conversation.ConversationType, SilentModeParam, ValueCallBack) instead,set DND Settings for each session

The documentation for this class was generated from the following file: