Package hu.akarnokd.rxjava3.operators
Interface BasicEmitter<T>
-
- Type Parameters:
T- the value type
public interface BasicEmitter<T>Abstraction over a Subscriber.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddoComplete()voiddoError(java.lang.Throwable t)voiddoNext(T t)
-
-
-
Method Detail
-
doNext
void doNext(T t)
-
doError
void doError(java.lang.Throwable t)
-
doComplete
void doComplete()
-
-