rx.observers.EmptyObserver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rxjava-core Show documentation
Show all versions of rxjava-core Show documentation
rxjava-core developed by Netflix
package rx.observers;
import rx.Observer;
/**
* Observer that does nothing... including swallowing errors.
*/
public class EmptyObserver implements Observer {
@Override
public void onCompleted() {
}
@Override
public void onError(Throwable e) {
}
@Override
public void onNext(T args) {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy