Jamm\Memory\Shm\SHMObject::__construct PHP Метод

__construct() публичный Метод

public __construct ( string $ID = '', integer $size, integer $maxsize )
$ID string path to existing file, __FILE__ usually, will define scope (like prefix).
$size integer initial size of the memory block in bites
$maxsize integer
    public function __construct($ID = '', $size = 0, $maxsize = 0)
    {
        if (!empty($size)) {
            $this->shmsize = $size;
        }
        if (!empty($maxsize)) {
            $this->max_size = $maxsize;
        }
        $this->set_ID($ID);
    }