You are here

public function ReplicationLog::setSourceLastSeq in Replication 8

Same name and namespace in other branches
  1. 8.2 src/Entity/ReplicationLog.php \Drupal\replication\Entity\ReplicationLog::setSourceLastSeq()

Sets the session id.

Parameters

string $source_last_seq: The last processed checkpoint.

Return value

$this

Overrides ReplicationLogInterface::setSourceLastSeq

File

src/Entity/ReplicationLog.php, line 72

Class

ReplicationLog
The replication log entity type.

Namespace

Drupal\replication\Entity

Code

public function setSourceLastSeq($source_last_seq) {
  $this
    ->set('source_last_seq', $source_last_seq);
  return $this;
}