sendRecallMessage method

void sendRecallMessage(
  1. String mid,
  2. Thread currentThread
)

Implementation

void sendRecallMessage(String mid, Thread currentThread) {
  ExtraParam extraParam = ExtraParam();
  extraParam.recallMid = mid;
  publish(mid, BytedeskConstants.MESSAGE_TYPE_NOTIFICATION_RECALL,
      currentThread, extraParam);
}