Uses of Class
rx.Notification.Kind
-
Packages that use Notification.Kind Package Description rx Base reactive classes: Observable, Single and Completable; base reactive consumers; other common base interfaces.rx.internal.operators Operators that allow composing Observables to transform and manipulate data in an asynchronous, functional and thread-safe manner. -
-
Uses of Notification.Kind in rx
Fields in rx declared as Notification.Kind Modifier and Type Field Description private Notification.Kind
Notification. kind
Methods in rx that return Notification.Kind Modifier and Type Method Description Notification.Kind
Notification. getKind()
Retrieves the kind of this notification:OnNext
,OnError
, orOnCompleted
static Notification.Kind
Notification.Kind. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Notification.Kind[]
Notification.Kind. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in rx with parameters of type Notification.Kind Constructor Description Notification(Notification.Kind kind, T value, java.lang.Throwable e)
-
Uses of Notification.Kind in rx.internal.operators
Methods in rx.internal.operators that return Notification.Kind Modifier and Type Method Description Notification.Kind
NotificationLite. kind(java.lang.Object n)
Indicates which variety a particular lite notification is.
-