Observer

fun interface Observer<T>

Functional interface representing an Observer of items to be emitted by an Observable.

Inheritors

Functions

Link copied to clipboard
abstract fun onNext(value: T)

Called whenever there has been a new item emitted by the upstream Observable.