| Package | Description |
|---|---|
| java.util.concurrent |
Utility classes commonly useful in concurrent programming.
|
| java.util.stream |
Classes to support functional-style operations on streams of elements, such as map-reduce transformations on collections.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
ConcurrentNavigableMap<K
A
ConcurrentMap supporting
NavigableMap operations, and recursively so for its navigable sub-maps.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ConcurrentHashMap<K
A hash table supporting full concurrency of retrievals and high expected concurrency for updates.
|
class |
ConcurrentSkipListMap<K
A scalable concurrent
ConcurrentNavigableMap implementation.
|
| Modifier and Type | Method and Description |
|---|---|
static <T |
Collectors.groupingByConcurrent(Function
Returns a concurrent
Collector implementing a cascaded "group by" operation on input elements of type
T, grouping elements according to a classification function, and then performing a reduction operation on the values associated with a given key using the specified downstream
Collector.
|
static <T |
Collectors.toConcurrentMap(Function
Returns a concurrent
Collector that accumulates elements into a
ConcurrentMap whose keys and values are the result of applying the provided mapping functions to the input elements.
|
| Modifier and Type | Method and Description |
|---|---|
static <T |
Collectors.groupingByConcurrent(Function
Returns a concurrent
Collector implementing a "group by" operation on input elements of type
T, grouping elements according to a classification function.
|
static <T |
Collectors.groupingByConcurrent(Function
Returns a concurrent
Collector implementing a cascaded "group by" operation on input elements of type
T, grouping elements according to a classification function, and then performing a reduction operation on the values associated with a given key using the specified downstream
Collector.
|
static <T |
Collectors.toConcurrentMap(Function
Returns a concurrent
Collector that accumulates elements into a
ConcurrentMap whose keys and values are the result of applying the provided mapping functions to the input elements.
|
static <T |
Collectors.toConcurrentMap(Function
Returns a concurrent
Collector that accumulates elements into a
ConcurrentMap whose keys and values are the result of applying the provided mapping functions to the input elements.
|