pocketmine\scheduler\AsyncTask::saveToThreadStore PHP Method

saveToThreadStore() public method

This might get deleted at any moment.
public saveToThreadStore ( string $identifier, mixed $value )
$identifier string
$value mixed
    public function saveToThreadStore($identifier, $value)
    {
        global $store;
        if (!$this->isGarbage()) {
            $store[$identifier] = $value;
        }
    }