本文整理汇总了Java中org.telegram.tgnet.TLRPC.Update方法的典型用法代码示例。如果您正苦于以下问题:Java TLRPC.Update方法的具体用法?Java TLRPC.Update怎么用?Java TLRPC.Update使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.telegram.tgnet.TLRPC
的用法示例。
在下文中一共展示了TLRPC.Update方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: compare
import org.telegram.tgnet.TLRPC; //导入方法依赖的package包/类
@Override
public int compare(TLRPC.Update lhs, TLRPC.Update rhs) {
int ltype = getUpdateType(lhs);
int rtype = getUpdateType(rhs);
if (ltype != rtype) {
return AndroidUtilities.compare(ltype, rtype);
} else if (ltype == 0) {
return AndroidUtilities.compare(lhs.pts, rhs.pts);
} else if (ltype == 1) {
return AndroidUtilities.compare(lhs.qts, rhs.qts);
} else if (ltype == 2) {
int lChannel = getUpdateChannelId(lhs);
int rChannel = getUpdateChannelId(rhs);
if (lChannel == rChannel) {
return AndroidUtilities.compare(lhs.pts, rhs.pts);
} else {
return AndroidUtilities.compare(lChannel, rChannel);
}
}
return 0;
}
示例2: insertUpdate
import org.telegram.tgnet.TLRPC; //导入方法依赖的package包/类
public boolean insertUpdate(TLRPC.User currentUser, TLRPC.Update update) {
if (update.user_id == UserConfig.getClientUserId() || currentUser == null) {
return false;
}
UpdateModel updateModel = new UpdateModel();
updateModel.setUserId(currentUser.id);
updateModel.setNew(true);
if (update instanceof TLRPC.TL_updateUserName) {
updateModel.setOldValue(formatUserSearchName(currentUser.username, currentUser.first_name, currentUser.last_name));
updateModel.setNewValue(formatUserSearchName(update.username, update.first_name, update.last_name));
updateModel.setType(2);
}
if (!(update instanceof TLRPC.TL_updateUserPhoto)) {
return false;
}
updateModel.setType(3);
this.dba.insertOrUpdateUpdate(updateModel);
return true;
}
示例3: getUpdateType
import org.telegram.tgnet.TLRPC; //导入方法依赖的package包/类
private int getUpdateType(TLRPC.Update update) {
if (update instanceof TLRPC.TL_updateNewMessage || update instanceof TLRPC.TL_updateReadMessagesContents || update instanceof TLRPC.TL_updateReadHistoryInbox ||
update instanceof TLRPC.TL_updateReadHistoryOutbox || update instanceof TLRPC.TL_updateDeleteMessages || update instanceof TLRPC.TL_updateWebPage ||
update instanceof TLRPC.TL_updateEditMessage) {
return 0;
} else if (update instanceof TLRPC.TL_updateNewEncryptedMessage) {
return 1;
} else if (update instanceof TLRPC.TL_updateNewChannelMessage || update instanceof TLRPC.TL_updateDeleteChannelMessages || update instanceof TLRPC.TL_updateEditChannelMessage) {
return 2;
} else {
return 3;
}
}
示例4: getUpdateChannelId
import org.telegram.tgnet.TLRPC; //导入方法依赖的package包/类
private int getUpdateChannelId(TLRPC.Update update) {
if (update instanceof TLRPC.TL_updateNewChannelMessage) {
return ((TLRPC.TL_updateNewChannelMessage) update).message.to_id.channel_id;
} else if (update instanceof TLRPC.TL_updateEditChannelMessage) {
return ((TLRPC.TL_updateEditChannelMessage) update).message.to_id.channel_id;
} else {
return update.channel_id;
}
}