sql/src/Operation.php
2018-06-29 18:15:39 +08:00

12 lines
231 B
PHP

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