#include <UIPMC_Wait_Never.h>
Inheritance diagram for TAO_UIPMC_Wait_Never:
Public Member Functions | |
TAO_UIPMC_Wait_Never (TAO_Transport *transport) | |
Constructor. | |
virtual | ~TAO_UIPMC_Wait_Never (void) |
Destructor. | |
virtual int | sending_request (TAO_ORB_Core *orb_core, int two_way) |
virtual int | wait (ACE_Time_Value *max_wait_time, TAO_Synch_Reply_Dispatcher &rd) |
virtual int | register_handler (void) |
virtual bool | non_blocking (void) const |
virtual bool | can_process_upcalls (void) const |
Definition at line 35 of file UIPMC_Wait_Never.h.
|
Constructor.
Definition at line 12 of file UIPMC_Wait_Never.cpp.
00013 : TAO_Wait_Strategy (transport) 00014 { 00015 } |
|
Destructor.
Definition at line 17 of file UIPMC_Wait_Never.cpp.
00018 { 00019 } |
|
Implements TAO_Wait_Strategy. Definition at line 34 of file UIPMC_Wait_Never.cpp.
00035 { 00036 return true; 00037 } |
|
Implements TAO_Wait_Strategy. Definition at line 28 of file UIPMC_Wait_Never.cpp.
00029 { 00030 return true; 00031 } |
|
Implements TAO_Wait_Strategy. Definition at line 22 of file UIPMC_Wait_Never.cpp.
00023 {
00024 return -1;
00025 }
|
|
Reimplemented from TAO_Wait_Strategy. Definition at line 40 of file UIPMC_Wait_Never.cpp.
00042 {
00043 return 0;
00044 }
|
|
Implements TAO_Wait_Strategy. Definition at line 47 of file UIPMC_Wait_Never.cpp.
00049 {
00050 return -1;
00051 }
|