Interface StandardChannel<Message>

    • Method Detail

      • capacity

        int capacity()
        The channel's internal buffer capacity.
        Returns:
        the channel's internal buffer capacity, -1 for an unbounded buffer, and 0 for a transfer channel.
      • isSingleProducer

        boolean isSingleProducer()
        Whether or not the channel supports a single producer only.
        Returns:
        true if the channel supports no more than one producer; false otherwise.
      • isSingleConsumer

        boolean isSingleConsumer()
        Whether or not the channel supports a single consumer only.
        Returns:
        true if the channel supports no more than one consumer; false otherwise.