1
0
mirror of https://github.com/danog/postgres.git synced 2024-11-27 04:24:45 +01:00
postgres/lib/Executor.php

44 lines
1.0 KiB
PHP

<?php
namespace Amp\Postgres;
use AsyncInterop\Promise;
interface Executor {
/**
* @param string $sql
*
* @return \AsyncInterop\Promise<\Amp\Postgres\Result>
*
* @throws \Amp\Postgres\FailureException
*/
public function query(string $sql): Promise;
/**
* @param string $sql
* @param mixed ...$params
*
* @return \AsyncInterop\Promise<\Amp\Postgres\Result>
*
* @throws \Amp\Postgres\FailureException
*/
public function execute(string $sql, ...$params): Promise;
/**
* @param string $sql
*
* @return \AsyncInterop\Promise<\Amp\Postgres\Statement>
*
* @throws \Amp\Postgres\FailureException
*/
public function prepare(string $sql): Promise;
/**
* @param string $channel Channel name.
* @param string $payload Notification payload.
*
* @return \AsyncInterop\Promise<\Amp\Postgres\CommandResult>
*/
public function notify(string $channel, string $payload = ""): Promise;
}