public class ConversationListViewModel
extends AndroidViewModel
Modifier and Type | Field and Description |
---|---|
protected android.app.Application |
mApplication |
protected <any> |
mConversationListLiveData |
protected DataProcessor<Conversation> |
mDataFilter |
protected android.os.Handler |
mHandler |
protected long |
mLastSyncTime |
protected int |
mSizePerPage |
protected Conversation.ConversationType[] |
mSupportedTypes |
protected java.util.concurrent.CopyOnWriteArrayList<BaseUiConversation> |
mUiConversationList |
Constructor and Description |
---|
ConversationListViewModel(android.app.Application application) |
Modifier and Type | Method and Description |
---|---|
void |
clearAllNotification() |
protected BaseUiConversation |
findConversationFromList(Conversation.ConversationType conversationType,
java.lang.String targetId,
boolean isGathered) |
void |
getConversationList(boolean loadMore)
从本地数据库获取会话列表。
此处借鉴前端的函数节流思想,在
REFRESH_INTERVAL 时间内,丢弃掉其它触发,只做一次执行。
以便提高接受大量消息时的刷新性能。 |
<any> |
getConversationListLiveData() |
<any> |
getNoticeContentLiveData()
获取连接状态通知内容
|
<any> |
getRefreshEventLiveData()
获取刷新事件 LiveData
|
protected boolean |
isSupported(Conversation.ConversationType type) |
protected void |
onCleared() |
protected void |
sort() |
protected void |
updateByConversation(Conversation conversation) |
protected Conversation.ConversationType[] mSupportedTypes
protected int mSizePerPage
protected long mLastSyncTime
protected android.app.Application mApplication
protected java.util.concurrent.CopyOnWriteArrayList<BaseUiConversation> mUiConversationList
protected <any> mConversationListLiveData
protected DataProcessor<Conversation> mDataFilter
protected android.os.Handler mHandler
public ConversationListViewModel(android.app.Application application)
public void getConversationList(boolean loadMore)
REFRESH_INTERVAL
时间内,丢弃掉其它触发,只做一次执行。
以便提高接受大量消息时的刷新性能。
loadMore
- 是否根据上次同步的时间戳拉取更多会话。
false: 从数据库拉取最新 N 条会话。true: 根据 UI 上最后一条会话的时间戳,继续拉取之前的 N 条会话。protected boolean isSupported(Conversation.ConversationType type)
protected void updateByConversation(Conversation conversation)
protected void onCleared()
protected void sort()
protected BaseUiConversation findConversationFromList(Conversation.ConversationType conversationType, java.lang.String targetId, boolean isGathered)
public <any> getConversationListLiveData()
public <any> getNoticeContentLiveData()
public <any> getRefreshEventLiveData()
public void clearAllNotification()