All Downloads are FREE. Search and download functionalities are using the official Maven repository.

rx.observers.EmptyObserver Maven / Gradle / Ivy

There is a newer version: 0.20.7
Show newest version
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