Aerys\WatcherProcess::__construct PHP Method

__construct() public method

public __construct ( Psr\Log\LoggerInterface $logger )
$logger Psr\Log\LoggerInterface
    public function __construct(PsrLogger $logger)
    {
        parent::__construct($logger);
        $this->logger = $logger;
        $this->procGarbageWatcher = \Amp\repeat(function () {
            $this->collectProcessGarbage();
        }, 100, ["enable" => false]);
    }