PHPDaemon\Core\AppInstance::broadcastCall PHP Method

broadcastCall() public method

Send broadcast RPC You can override it
public broadcastCall ( string $method, array $args = [], callable $cb = null ) : boolean
$method string Method name
$args array Arguments
$cb callable Callback
return boolean Success
    public function broadcastCall($method, $args = [], $cb = null)
    {
        return Daemon::$process->IPCManager->sendBroadcastCall('\\' . get_class($this) . ($this->name !== '' ? ':' . $this->name : ''), $method, $args, $cb);
    }