Aerys\WatcherProcess::onDeadIpcClient PHP Method

onDeadIpcClient() private method

private onDeadIpcClient ( string $readWatcherId, $ipcClient )
$readWatcherId string
    private function onDeadIpcClient(string $readWatcherId, $ipcClient)
    {
        \Amp\cancel($readWatcherId);
        @fclose($ipcClient);
        unset($this->ipcClients[$readWatcherId]);
        $this->defunctProcessCount++;
        \Amp\enable($this->procGarbageWatcher);
    }