Uses of Class
org.apache.commons.io.input.ObservableInputStream.Observer
-
Packages that use ObservableInputStream.Observer Package Description org.apache.commons.io.input Provides implementations of input classes, such asInputStream
andReader
. -
-
Uses of ObservableInputStream.Observer in org.apache.commons.io.input
Subclasses of ObservableInputStream.Observer in org.apache.commons.io.input Modifier and Type Class Description static class
MessageDigestCalculatingInputStream.MessageDigestMaintainingObserver
Maintains the message digest.class
TimestampedObserver
An observer with timestamps.Fields in org.apache.commons.io.input with type parameters of type ObservableInputStream.Observer Modifier and Type Field Description private java.util.List<ObservableInputStream.Observer>
ObservableInputStream. observers
Methods in org.apache.commons.io.input that return types with arguments of type ObservableInputStream.Observer Modifier and Type Method Description java.util.List<ObservableInputStream.Observer>
ObservableInputStream. getObservers()
Gets all currently registered observers.Methods in org.apache.commons.io.input with parameters of type ObservableInputStream.Observer Modifier and Type Method Description void
ObservableInputStream. add(ObservableInputStream.Observer observer)
Adds an Observer.void
ObservableInputStream. remove(ObservableInputStream.Observer observer)
Removes an Observer.Method parameters in org.apache.commons.io.input with type arguments of type ObservableInputStream.Observer Modifier and Type Method Description private void
ObservableInputStream. forEachObserver(IOConsumer<ObservableInputStream.Observer> action)
Constructors in org.apache.commons.io.input with parameters of type ObservableInputStream.Observer Constructor Description ObservableInputStream(java.io.InputStream inputStream, ObservableInputStream.Observer... observers)
Creates a new ObservableInputStream for the given InputStream.Constructor parameters in org.apache.commons.io.input with type arguments of type ObservableInputStream.Observer Constructor Description ObservableInputStream(java.io.InputStream inputStream, java.util.List<ObservableInputStream.Observer> observers)
Creates a new ObservableInputStream for the given InputStream.
-