00001 /* 00002 * HashMap.hpp 00003 * 00004 * Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved. 00005 * 00006 * Oracle is a registered trademarks of Oracle Corporation and/or its 00007 * affiliates. 00008 * 00009 * This software is the confidential and proprietary information of Oracle 00010 * Corporation. You shall not disclose such confidential and proprietary 00011 * information and shall use it only in accordance with the terms of the 00012 * license agreement you entered into with Oracle. 00013 * 00014 * This notice may not be removed or altered. 00015 */ 00016 #ifndef COH_HASH_MAP_HPP 00017 #define COH_HASH_MAP_HPP 00018 00019 #include "coherence/lang.ns" 00020 00021 #include "coherence/util/Hashtable.hpp" 00022 00023 COH_OPEN_NAMESPACE2(coherence,util) 00024 00025 /** 00026 * A hash based implementation of coherence::util::Map. 00027 * 00028 * The returned implementation is not guaranteed to be thread-safe. 00029 * 00030 * @see SafeHashMap 00031 * @see Hashtable 00032 * 00033 * @author mf 2008.02.25 00034 */ 00035 typedef Hashtable HashMap; 00036 00037 COH_CLOSE_NAMESPACE2 00038 00039 #endif // COH_HASH_MAP_HPP