Class Functions.NotificationOnError<T>
- java.lang.Object
-
- io.reactivex.rxjava3.internal.functions.Functions.NotificationOnError<T>
-
-
Field Summary
Fields Modifier and Type Field Description (package private) Consumer<? super Notification<T>>
onNotification
-
Constructor Summary
Constructors Constructor Description NotificationOnError(Consumer<? super Notification<T>> onNotification)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(java.lang.Throwable v)
Consume the given value.
-
-
-
Field Detail
-
onNotification
final Consumer<? super Notification<T>> onNotification
-
-
Constructor Detail
-
NotificationOnError
NotificationOnError(Consumer<? super Notification<T>> onNotification)
-
-
Method Detail
-
accept
public void accept(java.lang.Throwable v) throws java.lang.Throwable
Description copied from interface:Consumer
Consume the given value.
-
-