msgRecvCount method

int msgRecvCount(
  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 msgRecvCount(int seq) {
  return _msgReceiptCount('recv', seq);
}