1
0
mirror of https://github.com/danog/postgres.git synced 2024-11-27 12:34:40 +01:00
postgres/lib/Operation.php
2016-12-29 23:21:17 -06:00

11 lines
236 B
PHP

<?php
namespace Amp\Postgres;
interface Operation {
/**
* @param callable $onComplete Callback executed when the operation completes or the object is destroyed.
*/
public function onComplete(callable $onComplete);
}