00001 /* 00002 * ObjectArray.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_OBJECT_ARRAY_HPP 00017 #define COH_OBJECT_ARRAY_HPP 00018 00019 #include "coherence/lang/compatibility.hpp" 00020 00021 #include "coherence/lang/Array.hpp" 00022 #include "coherence/lang/MemberHolder.hpp" 00023 #include "coherence/lang/Object.hpp" 00024 #include "coherence/lang/SubscriptHandle.hpp" 00025 00026 00027 00028 COH_OPEN_NAMESPACE2(coherence,lang) 00029 00030 00031 /** 00032 * An array of Objects, referenced as either Handles or Views. 00033 * 00034 * This is a typedef of Array<MemberHolder> and as such assignments to the 00035 * array elements are thread-safe. 00036 * 00037 * @see Array 00038 * 00039 * @author mf 2008.01.11 00040 */ 00041 typedef Array<MemberHolder<Object> > ObjectArray; 00042 00043 COH_CLOSE_NAMESPACE2 00044 00045 #endif // COH_OBJECT_ARRAY_HPP