Class ObservableInternalHelper.FlatMapIntoIterable<T,​U>

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private Function<? super T,​? extends java.lang.Iterable<? extends U>> mapper  
    • Constructor Summary

      Constructors 
      Constructor Description
      FlatMapIntoIterable​(Function<? super T,​? extends java.lang.Iterable<? extends U>> mapper)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      ObservableSource<U> apply​(T t)
      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

      • mapper

        private final Function<? super T,​? extends java.lang.Iterable<? extends U>> mapper
    • Constructor Detail

      • FlatMapIntoIterable

        FlatMapIntoIterable​(Function<? super T,​? extends java.lang.Iterable<? extends U>> mapper)
    • Method Detail

      • apply

        public ObservableSource<U> apply​(T t)
                                  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<T,​U>
        Parameters:
        t - the input value
        Returns:
        the output value
        Throws:
        java.lang.Throwable - if the implementation wishes to throw any type of exception