本文整理汇总了Java中com.easemob.EMError.USER_REMOVED属性的典型用法代码示例。如果您正苦于以下问题:Java EMError.USER_REMOVED属性的具体用法?Java EMError.USER_REMOVED怎么用?Java EMError.USER_REMOVED使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类com.easemob.EMError
的用法示例。
在下文中一共展示了EMError.USER_REMOVED属性的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: initListener
/**
* init HuanXin listeners
*/
protected void initListener(){
Log.d(TAG, "init listener");
// create the global connection listener
connectionListener = new EMConnectionListener() {
@Override
public void onDisconnected(int error) {
if (error == EMError.USER_REMOVED) {
onCurrentAccountRemoved();
}else if (error == EMError.CONNECTION_CONFLICT) {
onConnectionConflict();
}else{
onConnectionDisconnected(error);
}
}
@Override
public void onConnected() {
onConnectionConnected();
}
};
//注册连接监听
EMChatManager.getInstance().addConnectionListener(connectionListener);
}
示例2: onDisconnected
@Override
public void onDisconnected(int error) {
if (error == EMError.USER_REMOVED || error == EMError.CONNECTION_CONFLICT) {
isConflict = true;
} else {
handler.sendEmptyMessage(0);
}
}
示例3: onDisconnected
@Override
public void onDisconnected(int error) {
if (error == EMError.USER_REMOVED || error == EMError.CONNECTION_CONFLICT) {
isConflict = true;
} else {
getActivity().runOnUiThread(new Runnable() {
public void run() {
onConnectionDisconnected();
}
});
}
}
示例4: onDisconnected
@Override
public void onDisconnected(int error) {
if (error == EMError.USER_REMOVED || error == EMError.CONNECTION_CONFLICT) {
isConflict = true;
} else {
handler.sendEmptyMessage(0);
}
}
示例5: onDisconnected
@Override
public void onDisconnected(int error) {
if (error == EMError.USER_REMOVED || error == EMError.CONNECTION_CONFLICT) {
isConflict = true;
} else {
handler.sendEmptyMessage(0);
}
}
示例6: setGlobalListeners
/**
* 设置全局事件监听
*/
protected void setGlobalListeners(){
syncGroupsListeners = new ArrayList<DataSyncListener>();
syncContactsListeners = new ArrayList<DataSyncListener>();
syncBlackListListeners = new ArrayList<DataSyncListener>();
isGroupsSyncedWithServer = demoModel.isGroupsSynced();
isContactsSyncedWithServer = demoModel.isContactSynced();
isBlackListSyncedWithServer = demoModel.isBacklistSynced();
// create the global connection listener
connectionListener = new EMConnectionListener() {
@Override
public void onDisconnected(int error) {
if (error == EMError.USER_REMOVED) {
onCurrentAccountRemoved();
}else if (error == EMError.CONNECTION_CONFLICT) {
onConnectionConflict();
}
}
@Override
public void onConnected() {
// in case group and contact were already synced, we supposed to notify sdk we are ready to receive the events
if(isGroupsSyncedWithServer && isContactsSyncedWithServer){
new Thread(){
@Override
public void run(){
DemoHelper.getInstance().notifyForRecevingEvents();
}
}.start();
}else{
if(!isGroupsSyncedWithServer){
asyncFetchGroupsFromServer(null);
}
if(!isContactsSyncedWithServer){
asyncFetchContactsFromServer(null);
}
if(!isBlackListSyncedWithServer){
asyncFetchBlackListFromServer(null);
}
}
// 当连接到服务器之后,这里开始检查是否有没有发送的ack回执消息,
EaseACKUtil.getInstance(appContext).checkACKData();
}
};
IntentFilter callFilter = new IntentFilter(EMChatManager.getInstance().getIncomingCallBroadcastAction());
if(callReceiver == null){
callReceiver = new CallReceiver();
}
//注册通话广播接收者
appContext.registerReceiver(callReceiver, callFilter);
//注册连接监听
EMChatManager.getInstance().addConnectionListener(connectionListener);
//注册群组和联系人监听
registerGroupAndContactListener();
//注册消息事件监听
registerEventListener();
}
示例7: setGlobalListeners
/**
* 设置全局事件监听
*/
protected void setGlobalListeners() {
syncGroupsListeners = new ArrayList<DataSyncListener>();
syncContactsListeners = new ArrayList<DataSyncListener>();
syncBlackListListeners = new ArrayList<DataSyncListener>();
isGroupsSyncedWithServer = demoModel.isGroupsSynced();
isContactsSyncedWithServer = demoModel.isContactSynced();
isBlackListSyncedWithServer = demoModel.isBacklistSynced();
// create the global connection listener
connectionListener = new EMConnectionListener() {
@Override
public void onDisconnected(int error) {
if (error == EMError.USER_REMOVED) {
onCurrentAccountRemoved();
} else if (error == EMError.CONNECTION_CONFLICT) {
onConnectionConflict();
}
}
@Override
public void onConnected() {
// in case group and contact were already synced, we supposed to notify sdk we are ready to receive the events
if (isGroupsSyncedWithServer && isContactsSyncedWithServer) {
new Thread() {
@Override
public void run() {
DemoHelper.getInstance().notifyForRecevingEvents();
}
}.start();
} else {
if (!isGroupsSyncedWithServer) {
asyncFetchGroupsFromServer(null);
}
if (!isContactsSyncedWithServer) {
asyncFetchContactsFromServer(null);
}
if (!isBlackListSyncedWithServer) {
asyncFetchBlackListFromServer(null);
}
}
}
};
IntentFilter callFilter = new IntentFilter(EMChatManager.getInstance().getIncomingCallBroadcastAction());
if (callReceiver == null) {
callReceiver = new CallReceiver();
}
//注册通话广播接收者
appContext.registerReceiver(callReceiver, callFilter);
//注册连接监听
EMChatManager.getInstance().addConnectionListener(connectionListener);
//注册群组和联系人监听
registerGroupAndContactListener();
//注册消息事件监听
registerEventListener();
}