public function getValue()

in src/Apache/Ignite/Internal/Binary/BinaryObjectField.php [59:67]


    public function getValue($type = null)
    {
        if ($this->buffer && ($this->value === null || $this->type !== $type)) {
            $this->buffer->setPosition($this->offset);
            $this->value = $this->communicator->readObject($this->buffer, $type);
            $this->type = $type;
        }
        return $this->value;
    }