public class SQLBlob extends DefaultStreamBlob implements Serializable
| Modifier and Type | Field and Description |
|---|---|
static boolean |
IS_STREAMING_ENABLED
By default the SQLBlob is remotable through Nuxeo streaming service.
|
EMPTY_BYTE_ARRAY, EMPTY_INPUT_STREAM, EMPTY_READER, EMPTY_STRING| Constructor and Description |
|---|
SQLBlob(Binary binary,
String filename,
String mimeType,
String encoding,
String digest) |
| Modifier and Type | Method and Description |
|---|---|
Binary |
getBinary() |
long |
getLength()
Gets the data length in bytes if known.
|
InputStream |
getStream() |
boolean |
isPersistent()
Checks whether this blob is persistent.
|
Blob |
persist()
Persist this stream so that
Blob.getStream() method can be called
successfully several times. |
Object |
writeReplace()
Replace this object with a
StreamingBlob when serialized. |
getDigest, getEncoding, getFilename, getMimeType, setDigest, setEncoding, setFilename, setMimeTypeasByteArrayBlob, asStringBlob, getByteArray, getReader, getString, readBytes, readBytes, readStringcopy, copy, transferTo, transferTo, transferTopublic static final boolean IS_STREAMING_ENABLED
org.nuxeo.ecm.core.storage.sql.blob_streaming = false
This way the blob will use the default serialization (file serialization) that is optimized for
servers that are using a shared file system (and not nuxeo streaming)public long getLength()
BlobgetLength in interface BlobgetLength in class StreamBlobpublic InputStream getStream() throws IOException
getStream in interface BlobIOExceptionpublic boolean isPersistent()
BlobBlob.getStream() can be
successfully called several times).isPersistent in interface Blobpublic Blob persist()
BlobBlob.getStream() method can be called
successfully several times. The persistence is done in a temporary file
or in memory - this is up to the implementation.
Blobs that are already persistent return themselves.
Persistence should update the internal structure of the Blob to make it persistent whenever possible and hence return itself whenever possible. This behavior cannot be guaranteed by every implementation however.
public Binary getBinary()
public Object writeReplace() throws ObjectStreamException
StreamingBlob when serialized.
The StreamingBlob object can be sent to remote machines through nuxeo streaming mechanism.
If IS_STREAMING_ENABLED is false then no replace takes place.ObjectStreamExceptionCopyright © 2011 Nuxeo SA. All Rights Reserved.