Kraken\Root\Runtime\Provider\SupervisorProvider::boot PHP Method

boot() protected method

protected boot ( Kraken\Container\ContainerInterface $container )
$container Kraken\Container\ContainerInterface
    protected function boot(ContainerInterface $container)
    {
        $config = $container->make('Kraken\\Config\\ConfigInterface');
        $baseSupervisor = $container->make('Kraken\\Runtime\\Supervision\\SupervisorBaseInterface');
        $remoteSupervisor = $container->make('Kraken\\Runtime\\Supervision\\SupervisorRemoteInterface');
        $this->bootBaseSupervision($baseSupervisor, $config);
        $this->bootRemoteSupervision($remoteSupervisor, $config);
    }