mirror of
https://github.com/danog/postgres.git
synced 2024-11-27 04:24:45 +01:00
11 lines
236 B
PHP
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);
|
|
}
|