Interface ITuple2Future<E,​F>

    • Method Detail

      • getFirstResult

        E getFirstResult​(ThreadSuspendable sus)
        Deprecated.
        - From 3.0. Use method without suspendable. Get the first result.
        Returns:
        The next intermediate result.
      • getFirstResult

        E getFirstResult()
        Get the first result.
        Returns:
        The next intermediate result.
      • getSecondResult

        F getSecondResult()
        Get the second result.
        Returns:
        The next intermediate result.
      • getFirstResult

        E getFirstResult​(long timeout)
        Get the first result.
        Parameters:
        timeout - The timeout in millis.
        Returns:
        The next intermediate result.
      • getSecondResult

        F getSecondResult​(long timeout)
        Get the second result.
        Parameters:
        timeout - The timeout in millis.
        Returns:
        The next intermediate result.
      • getFirstResult

        E getFirstResult​(long timeout,
                         boolean realtime)
        Get the first result.
        Parameters:
        timeout - The timeout in millis.
        realtime - Flag if wait should be realtime (in contrast to simulation time).
        Returns:
        The next intermediate result.
      • getSecondResult

        F getSecondResult​(long timeout,
                          boolean realtime)
        Get the second result.
        Parameters:
        timeout - The timeout in millis.
        realtime - Flag if wait should be realtime (in contrast to simulation time).
        Returns:
        The next intermediate result.