Prose\UsingProcessesTable::removeProcess PHP Method

removeProcess() public method

removeProcess
public removeProcess ( string $hostId, object $processDetails ) : void
$hostId string ID of the host where the process was running
$processDetails object The process ID we're working with
return void
    public function removeProcess($hostId, $processDetails)
    {
        $key = $hostId . ":" . $processDetails->pid;
        usingRuntimeTable($this->tableName)->removeItem($key);
    }
UsingProcessesTable