Subscriber (Observer)
See definition: Observer
Methods definitions in Some of the core methods
public interface Subscriber<T> {
void onSubscribe(Subcription var1);
void onNext(T var1);
void onError(Throwable var1);
void onComplete();
}
See definition: Observer
Methods definitions in Some of the core methods
public interface Subscriber<T> {
void onSubscribe(Subcription var1);
void onNext(T var1);
void onError(Throwable var1);
void onComplete();
}