Class ConcurrentUtils


  • public class ConcurrentUtils
    extends Object
    An utility class providing functionality related to the java.util.concurrent package.
    Since:
    3.0
    • Method Detail

      • extractCause

        public static ConcurrentException extractCause​(ExecutionException ex)
        Inspects the cause of the specified ExecutionException and creates a ConcurrentException with the checked cause if necessary. This method performs the following checks on the cause of the passed in exception:
        • If the passed in exception is null or the cause is null, this method returns null.
        • If the cause is a runtime exception, it is directly thrown.
        • If the cause is an error, it is directly thrown, too.
        • In any other case the cause is a checked exception. The method then creates a ConcurrentException, initializes it with the cause, and returns it.
        Parameters:
        ex - the exception to be processed
        Returns:
        a ConcurrentException with the checked cause
      • putIfAbsent

        public static <K,​V> V putIfAbsent​(ConcurrentMap<K,​V> map,
                                                K key,
                                                V value)
        Puts a value in the specified ConcurrentMap if the key is not yet present. This method works similar to the putIfAbsent() method of the ConcurrentMap interface, but the value returned is different. Basically, this method is equivalent to the following code fragment:
         if (!map.containsKey(key)) {
             map.put(key, value);
             return value;
         } else {
             return map.get(key);
         }
         

        except that the action is performed atomically. So this method always returns the value which is stored in the map.

        This method is null-safe: It accepts a null map as input without throwing an exception. In this case the return value is null, too.

        Type Parameters:
        K - the type of the keys of the map
        V - the type of the values of the map
        Parameters:
        map - the map to be modified
        key - the key of the value to be added
        value - the value to be added
        Returns:
        the value stored in the map after this operation
      • createIfAbsent

        public static <K,​V> V createIfAbsent​(ConcurrentMap<K,​V> map,
                                                   K key,
                                                   ConcurrentInitializer<V> init)
                                            throws ConcurrentException
        Checks if a concurrent map contains a key and creates a corresponding value if not. This method first checks the presence of the key in the given map. If it is already contained, its value is returned. Otherwise the get() method of the passed in ConcurrentInitializer is called. With the resulting object putIfAbsent(ConcurrentMap, Object, Object) is called. This handles the case that in the meantime another thread has added the key to the map. Both the map and the initializer can be null; in this case this method simply returns null.
        Type Parameters:
        K - the type of the keys of the map
        V - the type of the values of the map
        Parameters:
        map - the map to be modified
        key - the key of the value to be added
        init - the ConcurrentInitializer for creating the value
        Returns:
        the value stored in the map after this operation; this may or may not be the object created by the ConcurrentInitializer
        Throws:
        ConcurrentException - if the initializer throws an exception
      • constantFuture

        public static <T> Future<T> constantFuture​(T value)
        Gets an implementation of Future that is immediately done and returns the specified constant value.

        This can be useful to return a simple constant immediately from the concurrent processing, perhaps as part of avoiding nulls. A constant future can also be useful in testing.

        Type Parameters:
        T - the type of the value used by this Future object
        Parameters:
        value - the constant value to return, may be null
        Returns:
        an instance of Future that will return the value, never null