Class ConnectConsumer
- java.lang.Object
-
- io.reactivex.rxjava3.internal.util.ConnectConsumer
-
- All Implemented Interfaces:
Consumer<Disposable>
public final class ConnectConsumer extends java.lang.Object implements Consumer<Disposable>
Store the Disposable received from the connection.
-
-
Field Summary
Fields Modifier and Type Field Description Disposable
disposable
-
Constructor Summary
Constructors Constructor Description ConnectConsumer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(Disposable t)
Consume the given value.
-
-
-
Field Detail
-
disposable
public Disposable disposable
-
-
Method Detail
-
accept
public void accept(Disposable t)
Description copied from interface:Consumer
Consume the given value.- Specified by:
accept
in interfaceConsumer<Disposable>
- Parameters:
t
- the value
-
-