Interface Receiver<T>

  • All Known Implementing Classes:
    BasicReceiver


    public interface Receiver<T>
    A simple interface for depositing an element.
    • Method Summary

      Modifier and Type Method and Description
      void add(T... elements)
      Add elements to this receiver.
    • Method Detail

      • add

        void add(T... elements)
        Add elements to this receiver.
        Parameters:
        elements - the elements to add to this receiver.