db4o

Blob.getStatus Method 

returns the status after the last read- or write-operation.

[Visual Basic]
Function getStatus() As Double
[C#]
double getStatus();
[C++]
double getStatus();
[JScript]
function getStatus(): double;

Return Value

status - the current status

Remarks

returns the status after the last read- or write-operation.

The status value returned may be any of the following:
Status.UNUSED no data was ever stored to the Blob field.
Status.AVAILABLE available data was previously stored to the Blob field.
Status.QUEUED an operation was triggered and is waiting for it's turn in the Blob queue.
Status.COMPLETED the last operation on this field was completed successfully.
Status.PROCESSING for internal use only.
Status.ERROR the last operation failed.
or a double between 0 and 1 that signifies the current completion percentage of the currently running operation.

the five STATUS constants defined in this interface or a double between 0 and 1 that signifies the completion of the currently running operation.

See Also

Blob Interface | com.db4o.types Namespace | STATUS constants