Codebase list php-react-promise / upstream/2.5.1 src / CancellablePromiseInterface.php
upstream/2.5.1

Tree @upstream/2.5.1 (Download .tar.gz)

CancellablePromiseInterface.php @upstream/2.5.1raw · history · blame

<?php

namespace React\Promise;

interface CancellablePromiseInterface extends PromiseInterface
{
    /**
     * @return void
     */
    public function cancel();
}