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);
    }