Kraken\Runtime\Container\ThreadManagerInterface::stopThread PHP Method

stopThread() public method

Stop existing thread container.
public stopThread ( string $alias, mixed[] $params = [] ) : Kraken\Promise\PromiseInterface
$alias string
$params mixed[]
return Kraken\Promise\PromiseInterface
    public function stopThread($alias, $params = []);

Usage Example

Exemplo n.º 1
0
 /**
  * @override
  * @inheritDoc
  */
 public function stopThread($alias, $params = [])
 {
     return $this->threadManager->stopThread($alias, $params);
 }