obtain static method

CombineMessage obtain(
  1. String localPath
)

Implementation

static CombineMessage obtain(String localPath) {
  CombineMessage msg = new CombineMessage();
  msg.localPath = localPath;
  // 会话类型默认是私聊
  msg.conversationType = 1;
  return msg;
}