Vinelab\Minion\Client::call PHP Метод

call() публичный Метод

Call a registered procedure.
public call ( string $procedure, array $arguments = null, array $argumentsKw = null, array $options = null ) : Promise
$procedure string
$arguments array
$argumentsKw array
$options array
Результат React\Promise\Promise
    public function call($procedure, $arguments = null, $argumentsKw = null, $options = null)
    {
        return $this->getSession()->call($this->prepareTopic($procedure), $arguments, $argumentsKw, $options);
    }