Class Pattern3<T1,​T2,​T3>

  • Type Parameters:
    T1 - the first value type
    T2 - the second value type
    T3 - the third value type

    public final class Pattern3<T1,​T2,​T3>
    extends java.lang.Object
    Represents a join pattern over observable sequences.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      <T4> Pattern4<T1,​T2,​T3,​T4> and​(Observable<T4> other)
      Creates a pattern that matches when all three observable sequences have an available element.
      <R> Plan<R> then​(Function3<T1,​T2,​T3,​R> selector)
      Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
      • Methods inherited from class java.lang.Object

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

      • and

        public <T4> Pattern4<T1,​T2,​T3,​T4> and​(Observable<T4> other)
        Creates a pattern that matches when all three observable sequences have an available element.
        Type Parameters:
        T4 - the value type of the extra Observable
        Parameters:
        other - Observable sequence to match with the two previous sequences.
        Returns:
        Pattern object that matches when all observable sequences have an available element.
      • then

        public <R> Plan<R> then​(Function3<T1,​T2,​T3,​R> selector)
        Matches when all observable sequences have an available element and projects the elements by invoking the selector function.
        Type Parameters:
        R - the result type
        Parameters:
        selector - the function that will be invoked for elements in the source sequences.
        Returns:
        the plan for the matching
        Throws:
        java.lang.NullPointerException - if selector is null