the lock is only for update
[m6w6/pq-gateway] / lib / pq / Gateway / Table / LockInterface.php
1 <?php
2
3 namespace pq\Gateway\Table;
4
5 use \pq\Gateway\Row;
6
7 /**
8 * Lazy row lock on update
9 */
10 interface LockInterface
11 {
12 function onUpdate(Row $row, array &$where);
13 }