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

io.relayr.java.helper.observer.EmptyObserver Maven / Gradle / Ivy

package io.relayr.java.helper.observer;

import rx.Observer;

/**
 * This observable is not using onCompleted
 * @param 
 */
public class EmptyObserver implements Observer {

    @Override public void onCompleted() {}

    @Override public void onError(Throwable e) {}

    @Override public void onNext(T o) {}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy