/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
 */
package org.hibernate.engine.jdbc.internal;

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;

import org.hibernate.engine.jdbc.BinaryStream;

Implementation of BinaryStream
Author:Steve Ebersole
/** * Implementation of {@link BinaryStream} * * @author Steve Ebersole */
public class BinaryStreamImpl extends ByteArrayInputStream implements BinaryStream { private final int length;
Constructs a BinaryStreamImpl
Params:
  • bytes – The bytes to use backing the stream
/** * Constructs a BinaryStreamImpl * * @param bytes The bytes to use backing the stream */
public BinaryStreamImpl(byte[] bytes) { super( bytes ); this.length = bytes.length; } public InputStream getInputStream() { return this; } public byte[] getBytes() { // from ByteArrayInputStream return buf; } public long getLength() { return length; } @Override public void release() { try { super.close(); } catch (IOException ignore) { } } }