MediaWiki REL1_35
DBMasterPos.php
Go to the documentation of this file.
1<?php
2
3namespace Wikimedia\Rdbms;
4
5use Serializable;
6
14interface DBMasterPos extends Serializable {
19 public function asOfTime();
20
26 public function hasReached( DBMasterPos $pos );
27
33 public function channelsMatch( DBMasterPos $pos );
34
39 public function __toString();
40}
An object representing a master or replica DB position in a replicated setup.
channelsMatch(DBMasterPos $pos)
hasReached(DBMasterPos $pos)