Lines Matching refs:timestamp
277 * @param int|null $timestamp Set origin_server_ts (For application services only)
282 string $stateKey = "", int $timestamp = null) { argument
288 if ($timestamp) {
289 $params["ts"] = $timestamp;
315 * @param int $timestamp Set origin_server_ts (For application services only)
322 int $txnId = null, int $timestamp = null) { argument
328 if ($timestamp) {
329 $params['ts'] = $timestamp;
342 * @param int|null $timestamp Optional. Set origin_server_ts (For application services only)
349 int $txnId = null, int $timestamp = null) { argument
359 if ($timestamp) {
360 $params['ts'] = $timestamp;
376 * @param int|null $timestamp
383 array $extraInformation = [], int $timestamp = null) { argument
391 return $this->sendMessageEvent($roomId, 'm.room.message', $contentPack, null, $timestamp);
404 * @param int|null $timestamp Set origin_server_ts (For application services only)
411 array $thumbInfo = null, int $timestamp = null) { argument
424 return $this->sendMessageEvent($roomId, 'm.room.message', $contentPack, null, $timestamp);
433 * @param int|null $timestamp Set origin_server_ts (For application services only)
439 …ndMessage(string $roomId, string $textContent, string $msgType = 'm.text', int $timestamp = null) { argument
442 return $this->sendMessageEvent($roomId, 'm.room.message', $textBody, null, $timestamp);
450 * @param int|null $timestamp Set origin_server_ts (For application services only)
456 public function sendEmote(string $roomId, string $textContent, int $timestamp = null) { argument
459 return $this->sendMessageEvent($roomId, 'm.room.message', $body, null, $timestamp);
467 * @param int|null $timestamp Set origin_server_ts (For application services only)
473 public function sendNotice(string $roomId, string $textContent, int $timestamp = null) { argument
479 return $this->sendMessageEvent($roomId, 'm.room.message', $body, null, $timestamp);
526 * @param int|null $timestamp Set origin_server_ts (For application services only)
530 public function setRoomName(string $roomId, string $name, int $timestamp = null) { argument
533 return $this->sendStateEvent($roomId, 'm.room.name', $body, '', $timestamp);
553 * @param int|null $timestamp Set origin_server_ts (For application services only)
557 public function setRoomTopic(string $roomId, string $topic, int $timestamp = null) { argument
560 return $this->sendStateEvent($roomId, 'm.room.topic', $body, '', $timestamp);
699 * @param int|null $timestamp Set origin_server_ts (For application services only)
703 …ing $userId, string $membership, string $reason = '', array $profile = [], int $timestamp = null) { argument
715 return $this->sendStateEvent($roomId, 'm.room.member', $body, $userId, $timestamp);