Class AgentBuilder.RedefinitionStrategy.ResubmissionStrategy.Enabled.ResubmissionListener.ConcurrentHashSet<T>

  • Type Parameters:
    T - The element type of the set projection.
    All Implemented Interfaces:
    java.lang.Iterable<T>, java.util.Collection<T>, java.util.Set<T>
    Enclosing class:
    AgentBuilder.RedefinitionStrategy.ResubmissionStrategy.Enabled.ResubmissionListener

    protected static class AgentBuilder.RedefinitionStrategy.ResubmissionStrategy.Enabled.ResubmissionListener.ConcurrentHashSet<T>
    extends java.util.AbstractSet<T>
    A set projection for a ConcurrentHashMap.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.util.concurrent.ConcurrentMap<T,​java.lang.Boolean> delegate
      The delegate map.
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      protected ConcurrentHashSet()
      Creates a concurrent hash set.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean add​(T value)  
      java.util.Iterator<T> iterator()
      boolean remove​(java.lang.Object value)  
      int size()
      • Methods inherited from class java.util.AbstractSet

        equals, hashCode, removeAll
      • Methods inherited from class java.util.AbstractCollection

        addAll, clear, contains, containsAll, isEmpty, retainAll, toArray, toArray, toString
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface java.util.Collection

        parallelStream, removeIf, stream, toArray
      • Methods inherited from interface java.lang.Iterable

        forEach
      • Methods inherited from interface java.util.Set

        addAll, clear, contains, containsAll, isEmpty, retainAll, spliterator, toArray, toArray
    • Field Detail

      • delegate

        private final java.util.concurrent.ConcurrentMap<T,​java.lang.Boolean> delegate
        The delegate map.
    • Constructor Detail

      • ConcurrentHashSet

        protected ConcurrentHashSet()
        Creates a concurrent hash set.
    • Method Detail

      • add

        public boolean add​(T value)
        Specified by:
        add in interface java.util.Collection<T>
        Specified by:
        add in interface java.util.Set<T>
        Overrides:
        add in class java.util.AbstractCollection<T>
      • remove

        public boolean remove​(java.lang.Object value)
        Specified by:
        remove in interface java.util.Collection<T>
        Specified by:
        remove in interface java.util.Set<T>
        Overrides:
        remove in class java.util.AbstractCollection<T>
      • iterator

        public java.util.Iterator<T> iterator()
        Specified by:
        iterator in interface java.util.Collection<T>
        Specified by:
        iterator in interface java.lang.Iterable<T>
        Specified by:
        iterator in interface java.util.Set<T>
        Specified by:
        iterator in class java.util.AbstractCollection<T>
      • size

        public int size()
        Specified by:
        size in interface java.util.Collection<T>
        Specified by:
        size in interface java.util.Set<T>
        Specified by:
        size in class java.util.AbstractCollection<T>