T - the type of the expected valuespublic static final class Select.Cast<T> extends java.lang.Object implements Observable<T>
Note that generics information is erased, the actual exception might come from much deeper of the operator chain.
| Modifier and Type | Field and Description |
|---|---|
protected Observable<?> |
source |
| Constructor and Description |
|---|
Cast(Observable<?> source)
Constructor.
|
| Modifier and Type | Method and Description |
|---|---|
java.io.Closeable |
register(Observer<? super T> observer)
Registers an observer for the notification of Ts.
|
protected final Observable<?> source
public Cast(Observable<?> source)
source - the source of unknown elements@Nonnull
public java.io.Closeable register(@Nonnull
Observer<? super T> observer)
Observableregister in interface Observable<T>observer - the observer of Ts or any supertype of it