Class ObservableInternalHelper.FlatMapWithCombinerInner<U,​R,​T>

  • All Implemented Interfaces:
    Function<U,​R>
    Enclosing class:
    ObservableInternalHelper

    static final class ObservableInternalHelper.FlatMapWithCombinerInner<U,​R,​T>
    extends java.lang.Object
    implements Function<U,​R>
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private BiFunction<? super T,​? super U,​? extends R> combiner  
      private T t  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      R apply​(U w)
      Apply some calculation to the input value and return some other value.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • combiner

        private final BiFunction<? super T,​? super U,​? extends R> combiner
      • t

        private final T t
    • Constructor Detail

      • FlatMapWithCombinerInner

        FlatMapWithCombinerInner​(BiFunction<? super T,​? super U,​? extends R> combiner,
                                 T t)
    • Method Detail

      • apply

        public R apply​(U w)
                throws java.lang.Throwable
        Description copied from interface: Function
        Apply some calculation to the input value and return some other value.
        Specified by:
        apply in interface Function<U,​R>
        Parameters:
        w - the input value
        Returns:
        the output value
        Throws:
        java.lang.Throwable - if the implementation wishes to throw any type of exception