Interface HasUpstreamSingleSource<T>
-
- Type Parameters:
T
- the value type
- All Known Implementing Classes:
MaybeFromSingle
public interface HasUpstreamSingleSource<@NonNull T>
Interface indicating the implementor has an upstream SingleSource-like source available viasource()
method.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NonNull SingleSource<T>
source()
Returns the upstream source of this Single.
-
-
-
Method Detail
-
source
@NonNull @NonNull SingleSource<T> source()
Returns the upstream source of this Single.Allows discovering the chain of observables.
- Returns:
- the source SingleSource
-
-