Class Multicaster<T>

    • Constructor Summary

      Constructors 
      Constructor Description
      Multicaster​(T... members)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void add​(T member)  
      void clear()  
      protected java.util.List<T> getMembers()
      Returns a snapshot of the members of this multicaster instance.
      boolean isEmpty()  
      void remove​(T member)  
      int size()  
      • Methods inherited from class java.lang.Object

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

      • Multicaster

        public Multicaster​(T... members)
    • Method Detail

      • add

        public void add​(T member)
      • remove

        public void remove​(T member)
      • clear

        public void clear()
      • isEmpty

        public boolean isEmpty()
      • size

        public int size()
      • getMembers

        protected java.util.List<T> getMembers()
        Returns a snapshot of the members of this multicaster instance.