-
- All Known Subinterfaces:
Binary
,SignatureWithPublicKeyRecovery
- All Known Implementing Classes:
BinaryType
,CryptoBinary
,EncryptedData
,Hash
,SignatureBinary
,SignatureEcBc
,SignatureEcBcPlain
,SignatureEcBcWithRecoveryId
,SignatureGeneric
,SignatureRsa
,StreamableBlob
,StreamablePath
public interface Streamable
Interface for an abstract BLOB that can be streamed.- Since:
- 1.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InputStream
asStream()
void
save(OutputStream out)
-
-
-
Method Detail
-
save
void save(OutputStream out)
- Parameters:
out
- theOutputStream
towrite
the data to.
-
asStream
InputStream asStream()
- Returns:
- a new
InputStream
to read the underlying data.
-
-