msgReadCount method

int msgReadCount(
  1. int seq
)

Get the number of topic subscribers who marked this message (and all older messages) as read. The current user is excluded from the count

seq - Message id to check.

Implementation

int msgReadCount(int seq) {
  return _msgReceiptCount('read', seq);
}