mesibo/messenger-app-android

Getting user list (chats)

Opened this issue · 0 comments

Hi,

I am trying to fetch chat list of a user. I was going through API documentation and found this to read session:

Mesibo.ReadDbSession mReadSession = new Mesibo.ReadDbSession(from, 0, null, this);
mReadSession.enableReadReceipt(true);
mReadSession.enableMissedCalls(mShowMissedCalls);
mReadSession.read(100);

But how will it work? What does it return? I have my custom RecyclerView in which I will be showing user chats.

Edit: Probably this code block is to read individual's chats. Anyways I need help to get both. Please suggest.