Jackalope\Transport\TransportInterface::getBinaryStream PHP Method

getBinaryStream() public method

Retrieve a stream of a binary property value
public getBinaryStream ( string $path ) : resource
$path string absolute path to the property containing binary data
return resource with binary data
    public function getBinaryStream($path);

Usage Example

 /**
  * {@inheritDoc}
  */
 public function getBinaryStream($path)
 {
     $this->logger->startCall(__FUNCTION__, func_get_args());
     $result = $this->transport->getBinaryStream($path);
     $this->logger->stopCall();
     return $result;
 }
All Usage Examples Of Jackalope\Transport\TransportInterface::getBinaryStream