Added capability to dump AsyncWorker memory

This commit is contained in:
Dylan K. Taylor
2017-08-22 19:57:00 +01:00
parent 5a3ce42f74
commit eb4594348b
3 changed files with 122 additions and 14 deletions

View File

@ -64,4 +64,8 @@ class AsyncWorker extends Worker{
public function getThreadName() : string{
return "Asynchronous Worker #" . $this->id;
}
public function getAsyncWorkerId() : int{
return $this->id;
}
}