List<String> result = map.entrySet()
.stream()
.map(Map.Entry::getValue)
.flatMap(x -> x.stream())
.collect(Collectors.toCollection(ArrayList::new));
The above code will create a ArrayList which is not thread safe. So how can be make it thread safe.
If you want a synchronized collection, you can just change your collector to provide the implementation you want, for example:
Or if you prefer a concurrent collection:
In the latter case, it may be more efficient to use the copy constructor to avoid unnecessary copies of the underlying array.