Class ZippingReceivePort<Message>

  • All Implemented Interfaces:
    Port<Message>, PortAutoCloseable, ReceivePort<Message>, java.lang.AutoCloseable

    public class ZippingReceivePort<Message>
    extends java.lang.Object
    implements ReceivePort<Message>
    Single consumer
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void close()
      Closes the channel so that no more messages could be sent to it.
      boolean isClosed()
      Tests whether the channel has been closed and no more messages await in the channel.
      Message receive()
      Retrieves a message from the channels, possibly blocking until one becomes available.
      Message receive​(long timeout, java.util.concurrent.TimeUnit unit)
      Retrieves a message from the channels, possibly blocking until one becomes available, but no longer than the specified timeout.
      Message receive​(Timeout timeout)
      Retrieves a message from the channels, possibly blocking until one becomes available, but no longer than the specified timeout.
      protected Message transform​(java.lang.Object[] ms)  
      Message tryReceive()
      Retrieves a message from the channel if one is available.
      • Methods inherited from class java.lang.Object

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

      • ZippingReceivePort

        public ZippingReceivePort​(com.google.common.base.Function<java.lang.Object[],​Message> f,
                                  ReceivePort<?>... targets)
      • ZippingReceivePort

        public ZippingReceivePort​(com.google.common.base.Function<java.lang.Object[],​Message> f,
                                  java.util.List<? extends ReceivePort<?>> targets)
      • ZippingReceivePort

        public ZippingReceivePort​(ReceivePort<?>... targets)
      • ZippingReceivePort

        public ZippingReceivePort​(java.util.List<? extends ReceivePort<?>> targets)
    • Method Detail

      • tryReceive

        public Message tryReceive()
        Description copied from interface: ReceivePort
        Retrieves a message from the channel if one is available. This method never blocks.
        Specified by:
        tryReceive in interface ReceivePort<Message>
        Returns:
        a message, or null if one is not immediately available.
      • receive

        public Message receive​(long timeout,
                               java.util.concurrent.TimeUnit unit)
                        throws SuspendExecution,
                               java.lang.InterruptedException
        Description copied from interface: ReceivePort
        Retrieves a message from the channels, possibly blocking until one becomes available, but no longer than the specified timeout.
        Specified by:
        receive in interface ReceivePort<Message>
        Parameters:
        timeout - the maximum duration to block waiting for a message.
        unit - the time unit of the timeout.
        Returns:
        a message, or null if the channel has been closed and no more messages await (see PortAutoCloseable.isClosed()), or if the timeout has expired.
        Throws:
        SuspendExecution
        java.lang.InterruptedException
      • receive

        public Message receive​(Timeout timeout)
                        throws SuspendExecution,
                               java.lang.InterruptedException
        Description copied from interface: ReceivePort
        Retrieves a message from the channels, possibly blocking until one becomes available, but no longer than the specified timeout.
        Specified by:
        receive in interface ReceivePort<Message>
        Parameters:
        timeout - the method will not block for longer than the amount remaining in the Timeout
        Returns:
        a message, or null if the channel has been closed and no more messages await (see PortAutoCloseable.isClosed()), or if the timeout has expired.
        Throws:
        SuspendExecution
        java.lang.InterruptedException
      • close

        public void close()
        Description copied from interface: PortAutoCloseable
        Closes the channel so that no more messages could be sent to it. Messages already sent to the channel will still be received.
        Specified by:
        close in interface java.lang.AutoCloseable
        Specified by:
        close in interface PortAutoCloseable
      • isClosed

        public boolean isClosed()
        Description copied from interface: PortAutoCloseable
        Tests whether the channel has been closed and no more messages await in the channel. If this method returns true all future calls to receive are guaranteed to return null, and calls to receive on a primitive channel will throw a EOFException.
        Specified by:
        isClosed in interface PortAutoCloseable
        Returns:
        true if the channels has been closed and no more messages will be received; false otherwise.
      • transform

        protected Message transform​(java.lang.Object[] ms)