Collectable::isGarbage PHP Method

isGarbage() public method

public isGarbage ( ) : boolean
return boolean
    public function isGarbage();

Usage Example

コード例 #1
0
ファイル: Worker.php プロジェクト: krakjoe/pthreads-polyfill
 public function collector(Collectable $collectable)
 {
     return $collectable->isGarbage();
 }
Collectable