Package org.nuxeo.ecm.core.blob
Interface KeyStrategy.WriteObserver
-
- All Known Implementing Classes:
KeyStrategyDigest.WriteObserverDigest
- Enclosing interface:
- KeyStrategy
public static interface KeyStrategy.WriteObserver
Observer of the writes to anOutputStream
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
done()
Must be called when writes to the wrapped stream are done, to complete observation.OutputStream
wrap(OutputStream out)
Wraps the given stream to observe it.
-
-
-
Method Detail
-
wrap
OutputStream wrap(OutputStream out)
Wraps the given stream to observe it.
-
done
void done()
Must be called when writes to the wrapped stream are done, to complete observation.
-
-