You are here

public function ReplicationLog::getSourceLastSeq in Replication 8

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

Gets the last processed checkpoint.

Return value

string The last processed checkpoint.

Overrides ReplicationLogInterface::getSourceLastSeq

File

src/Entity/ReplicationLog.php, line 65

Class

ReplicationLog
The replication log entity type.

Namespace

Drupal\replication\Entity

Code

public function getSourceLastSeq() {
  return $this
    ->get('source_last_seq')->value;
}