00001 /* 00002 * Copyright (c) 2000, 2020, Oracle and/or its affiliates. 00003 * 00004 * Licensed under the Universal Permissive License v 1.0 as shown at 00005 * http://oss.oracle.com/licenses/upl. 00006 */ 00007 #ifndef COH_HASH_MAP_HPP 00008 #define COH_HASH_MAP_HPP 00009 00010 #include "coherence/lang.ns" 00011 00012 #include "coherence/util/Hashtable.hpp" 00013 00014 COH_OPEN_NAMESPACE2(coherence,util) 00015 00016 /** 00017 * A hash based implementation of coherence::util::Map. 00018 * 00019 * The returned implementation is not guaranteed to be thread-safe. 00020 * 00021 * @see SafeHashMap 00022 * @see Hashtable 00023 * 00024 * @author mf 2008.02.25 00025 */ 00026 typedef Hashtable HashMap; 00027 00028 COH_CLOSE_NAMESPACE2 00029 00030 #endif // COH_HASH_MAP_HPP