ACE  6.1.0
Deprecated List
Member ACE_Abstract_Timer_Queue< TYPE >::gettimeofday (ACE_Time_Value(*gettimeofday)(void))=0
Use TIME_POLICY support instead. See Timer_Queue_T.h
Member ACE_DECLARE_STL_REVERSE_ITERATORS
ACE_DECLARE_STL_REVERSE_ITERATORS is a crutch to be used until all C++ compiler supported by ACE support the standard reverse_iterator adapters.
Member ACE_DLList_Iterator< T >::next (void) const
Delegates to ACE_Double_Linked_List_Iterator, except that whereas the Double_Linked_List version of next returns the node, this next returns the contents of the node
Member ACE_DLList_Reverse_Iterator< T >::next (void) const
Delegates to ACE_Double_Linked_List_Iterator.
Member ACE_Double_Linked_List_Iterator_Base< T >::next (void) const
Return the address of next (current) unvisited item in the list. 0 if there is no more element available.
Member ACE_Future< T >::operator T ()
Note that this method is going away in a subsequent release since it doesn't distinguish between failure results and success results (exceptions should be used, but they aren't portable...). Type conversion, which obtains the result of the asynchronous method invocation. Will block forever. The get() method should be used instead since it separates the error value from the result, and also permits timeouts.
Member ACE_Get_Opt::argc_
This is public for backwards compatibility only. It will be made private in a release of ACE past 5.3. Do not write code that relies on this member being public; use the argc() accessor method instead.
Member ACE_Get_Opt::argv_
This is public for backwards compatibility only. It will be made private in a release of ACE past 5.3. Do not write code that relies on this member being public; use the argv() accessor method instead.
Member ACE_Get_Opt::optarg
This is public for backwards compatibility only. It will be made private in a release of ACE past 5.3. Do not write code that relies on this member being public; use the opt_arg() accessor method instead.
Member ACE_Get_Opt::opterr
This is public for backwards compatibility only. It will be made private in a release of ACE past 5.3. Do not write code that relies on this member being public; use the report_errors argument to this class's constructor instead.
Member ACE_Get_Opt::optind
This is public for backwards compatibility only. It will be made private in a release of ACE past 5.3. Do not write code that relies on this member being public; use the opt_ind() accessor method instead.
Member ACE_Hash_Map_Entry< EXT_ID, INT_ID >::ext_id_
Use key()
Member ACE_Hash_Map_Entry< EXT_ID, INT_ID >::int_id_
Use item()
Member ACE_High_Res_Timer::gettimeofday (const ACE_OS::ACE_HRTimer_Op=ACE_OS::ACE_HRTIMER_GETTIME)
THIS FUNCTION IS DEPRECATED. PLEASE USE <ACE_OS::gettimeofday> INSTEAD! Calls <ACE_High_Res_Timer::hrtime_to_tv> passing <ACE_OS::gethrtime>. This function can be used to parameterize objects such as <ACE_Timer_Queue::gettimeofday>. If <global_scale_factor_> is not set, and we're on a platform that requires <global_scale_factor_> (e.g., Win32), ACE_OS::gettimeofday will be used instead of <ACE_OS::gethrtime>. This allows applications on Intel to use <High_Res_Timer> even when <global_scale_factor> is not set. However, setting the <global_scale_factor_> appropriately will result in the finest resolution possible.
Member ACE_InputCDR::to_string::to_string (ACE_CDR::Char *&s, ACE_CDR::ULong b)
The constructor taking a non-const string is now deprecated (C++ mapping 00-01-02), but we keep it around for backward compatibility.
Member ACE_Message_Queue< ACE_SYNCH_DECL >::enqueue (ACE_Message_Block *new_item, ACE_Time_Value *timeout=0)
This is an alias for enqueue_prio(). It's only here for backwards compatibility and will go away in a subsequent release. Please use enqueue_prio() instead.
Member ACE_Message_Queue_Ex< ACE_MESSAGE_TYPE, ACE_SYNCH_DECL >::enqueue (ACE_MESSAGE_TYPE *new_item, ACE_Time_Value *timeout=0)
This is an alias for enqueue_prio(). It's only here for backwards compatibility and will go away in a subsequent release. Please use enqueue_prio() instead.
Member ACE_Object_Manager::default_mask (void)
Accesses a default signal set used, for example, in ACE_Sig_Guard methods. Deprecated: use ACE_Object_Manager::default_mask () instead.
Member ACE_RB_Tree< EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK >::clear (void)
Destroys all nodes and sets the root pointer null.
Member ACE_RB_Tree< EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK >::find (const EXT_ID &k)
signature will change to become int find (const EXT_ID &ext_id); which will return 0 if the ext_id is in the tree, otherwise -1.
Member ACE_RB_Tree< EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK >::insert (const EXT_ID &k, const INT_ID &t)
Member ACE_RB_Tree< EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK >::remove (const EXT_ID &k)
Member ACE_RB_Tree_Iterator< EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK >::first (void)
Move to the first item in the iteration (and in the tree).
Member ACE_RB_Tree_Iterator< EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK >::is_done (void)
: use the base class <done> method instead. Returns 0 if the iterator is positioned over a valid ACE_RB_Tree node, returns 1 if not.
Member ACE_RB_Tree_Iterator< EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK >::item (void)
Accessor for item of node under iterator (if any).
Member ACE_RB_Tree_Iterator< EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK >::key (void)
Accessor for key of node under iterator (if any).
Member ACE_RB_Tree_Iterator< EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK >::last (void)
Move to the last item in the iteration (and in the tree).
Member ACE_RB_Tree_Iterator< EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK >::next (void)
Move to the next item in the iteration (and in the tree).
Member ACE_RB_Tree_Iterator< EXT_ID, INT_ID, COMPARE_KEYS, ACE_LOCK >::previous (void)
Move to the previous item in the iteration (and in the tree).
Member ACE_Reactor::end_event_loop (void)
Use ACE_Reactor::instance()->end_reactor_event_loop() instead
Member ACE_Reactor::event_loop_done (void)
Use ACE_Reactor::instance()->reactor_event_loop_done() instead
Member ACE_Reactor::reset_event_loop (void)
Use ACE_Reactor::instance()->reset_reactor_event_loop() instead
Member ACE_Reactor::run_event_loop (ACE_Time_Value &tv)
Use ACE_Reactor::instance()->run_reactor_event_loop() instead
Member ACE_Reactor::run_event_loop (void)
Use ACE_Reactor::instance()->run_reactor_event_loop() instead
Member ACE_Service_Config::instance (void)
Use current() instead.
Member ACE_Service_Config::process_commandline_directives (void)
Process service configuration requests that were provided on the command-line. Returns the number of errors that occurred.
Member ACE_Service_Config::static_svcs (void)
- Same as instance(), but still useful in legacy code, (notably, one that can not be easily modified) which uses the following idiom for registering static services:
Member ACE_Service_Gestalt::initialize (const ACE_Service_Type *, const ACE_TCHAR *parameters)
Member ACE_SOCK_Dgram_Mcast::set_option (int option, char optval)
This method has been deprecated since it cannot be used easily with with IPv6 options. Use ACE_SOCK::set_option instead.
Member ACE_Thread_Manager::at_exit (void *object, ACE_CLEANUP_FUNC cleanup_hook, void *param)
This function is deprecated. Please use the previous two at_exit method. Notice that you should avoid mixing this method with the previous two at_exit methods.
Member ACE_Time_Value::msec (ACE_UINT64 &ms) const
Use get_msec() instead.
Member ACE_Time_Value::msec (ACE_UINT64 &ms)
Use get_msec() instead.
Member ACE_Timer_Queue_T< TYPE, FUNCTOR, ACE_LOCK, TIME_POLICY >::gettimeofday (ACE_Time_Value(*gettimeofday)(void))
Use TIME_POLICY support instead. This will only have effect when the TIME_POLICY used is ACE_FPointer_Time_Policy. Other standard ACE time policies will ignore this.
Member ACE_Utils::UUID_Generator::init (void)
This method may go away in some future release.
File Numeric_Limits.h
This header will be removed once all platforms supported by ACE support std::numeric_limits<>.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines