Package rx.functions
Interface Func1<T,R>
-
- Type Parameters:
T
- the first argument typeR
- the result type
- All Superinterfaces:
Function
- All Known Subinterfaces:
Completable.CompletableOperator
,Completable.CompletableTransformer
,Observable.Operator<R,T>
,Observable.Transformer<T,R>
,Single.Transformer<T,R>
- All Known Implementing Classes:
InternalObservableUtils.EqualsWithFunc1
,InternalObservableUtils.IsInstanceOfFunc1
,InternalObservableUtils.NotificationErrorExtractor
,InternalObservableUtils.RepeatNotificationDematerializer
,InternalObservableUtils.RetryNotificationDematerializer
,InternalObservableUtils.ReturnsVoidFunc1
,InternalObservableUtils.SelectorAndObserveOn
,InternalObservableUtils.ToArrayFunc1
,OnSubscribeRedo.RedoFinite
,OnSubscribeRedo.RetryWithPredicate
,OperatorAll
,OperatorAny
,OperatorAsObservable
,OperatorBufferWithSingleObservable
,OperatorBufferWithSize
,OperatorBufferWithStartEndObservable
,OperatorBufferWithTime
,OperatorCast
,OperatorDebounceWithSelector
,OperatorDebounceWithTime
,OperatorDelay
,OperatorDelayWithSelector
,OperatorDematerialize
,OperatorDistinct
,OperatorDistinctUntilChanged
,OperatorDoAfterTerminate
,OperatorDoOnEach
,OperatorDoOnRequest
,OperatorDoOnSubscribe
,OperatorDoOnUnsubscribe
,OperatorEagerConcatMap
,OperatorElementAt
,OperatorGroupBy
,OperatorIgnoreElements
,OperatorMapNotification
,OperatorMapPair
,OperatorMapPair.OuterInnerMapper
,OperatorMaterialize
,OperatorMerge
,OperatorObserveOn
,OperatorOnBackpressureBuffer
,OperatorOnBackpressureDrop
,OperatorOnBackpressureLatest
,OperatorOnErrorResumeNextViaFunction
,OperatorRetryWithPredicate
,OperatorSampleWithObservable
,OperatorSampleWithTime
,OperatorScan
,OperatorSerialize
,OperatorSingle
,OperatorSkip
,OperatorSkipLast
,OperatorSkipLastTimed
,OperatorSkipTimed
,OperatorSkipUntil
,OperatorSkipWhile
,OperatorSwitch
,OperatorSwitchIfEmpty
,OperatorTake
,OperatorTakeLast
,OperatorTakeLast.TakeLastSubscriber
,OperatorTakeLastTimed
,OperatorTakeLastTimed.TakeLastTimedSubscriber
,OperatorTakeTimed
,OperatorTakeUntil
,OperatorTakeUntilPredicate
,OperatorTakeWhile
,OperatorThrottleFirst
,OperatorTimeInterval
,OperatorTimeout
,OperatorTimeoutBase
,OperatorTimeoutWithSelector
,OperatorTimestamp
,OperatorToMap
,OperatorToMultimap
,OperatorToMultimap.DefaultMultimapCollectionFactory
,OperatorToObservableList
,OperatorToObservableSortedList
,OperatorUnsubscribeOn
,OperatorWindowWithObservable
,OperatorWindowWithObservableFactory
,OperatorWindowWithSize
,OperatorWindowWithStartEndObservable
,OperatorWindowWithTime
,OperatorWithLatestFrom
,OperatorZip
,OperatorZipIterable
,UtilityFunctions.AlwaysFalse
,UtilityFunctions.AlwaysTrue
public interface Func1<T,R> extends Function
Represents a function with one argument.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description R
call(T t)
-