blob: 52d5e7d7c16f6daf993ab8f0ec0787558a6b4af2 [file] [log] [blame]
Thomas Vachuska24c849c2014-10-27 09:53:05 -07001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
Yuta HIGUCHI39ede6a2014-10-03 15:23:33 -070019package org.onlab.util;
20
21import java.util.concurrent.ConcurrentHashMap;
22import java.util.concurrent.ConcurrentMap;
23
Yuta HIGUCHI39ede6a2014-10-03 15:23:33 -070024import org.apache.commons.lang3.concurrent.ConcurrentInitializer;
25
26/**
27 * Creates an instance of new ConcurrentHashMap on each {@link #get()} call.
28 * <p>
29 * To be used with
30 * {@link org.apache.commons.lang3.concurrent.ConcurrentUtils#createIfAbsent()
31 * ConcurrentUtils#createIfAbsent}
32 *
33 * @param <K> ConcurrentHashMap key type
34 * @param <V> ConcurrentHashMap value type
35 */
36public final class NewConcurrentHashMap<K, V>
37 implements ConcurrentInitializer<ConcurrentMap<K, V>> {
38
39 public static final NewConcurrentHashMap<?, ?> INSTANCE = new NewConcurrentHashMap<>();
40
41 @SuppressWarnings("unchecked")
42 public static <K, V> NewConcurrentHashMap<K, V> ifNeeded() {
43 return (NewConcurrentHashMap<K, V>) INSTANCE;
44 }
45
46 @Override
Yuta HIGUCHIe66d10e2014-10-14 16:06:13 -070047 public ConcurrentMap<K, V> get() {
Yuta HIGUCHI39ede6a2014-10-03 15:23:33 -070048 return new ConcurrentHashMap<>();
49 }
50}