RTCORBA::TCPProtocolProperties Interface Reference

import "RTCORBA.pidl";

Inheritance diagram for RTCORBA::TCPProtocolProperties:

Inheritance graph
[legend]
Collaboration diagram for RTCORBA::TCPProtocolProperties:

Collaboration graph
[legend]
List of all members.

Public Types

typedef TCPProtocolProperties_ptr _ptr_type
typedef TCPProtocolProperties_var _var_type

Public Member Functions

virtual CORBA::Long send_buffer_size ()=0 throw ( CORBA::SystemException )
virtual void send_buffer_size (::CORBA::Long send_buffer_size)=0 throw ( CORBA::SystemException )
virtual CORBA::Long recv_buffer_size ()=0 throw ( CORBA::SystemException )
virtual void recv_buffer_size (::CORBA::Long recv_buffer_size)=0 throw ( CORBA::SystemException )
virtual CORBA::Boolean keep_alive ()=0 throw ( CORBA::SystemException )
virtual void keep_alive (::CORBA::Boolean keep_alive)=0 throw ( CORBA::SystemException )
virtual CORBA::Boolean dont_route ()=0 throw ( CORBA::SystemException )
virtual void dont_route (::CORBA::Boolean dont_route)=0 throw ( CORBA::SystemException )
virtual CORBA::Boolean no_delay ()=0 throw ( CORBA::SystemException )
virtual void no_delay (::CORBA::Boolean no_delay)=0 throw ( CORBA::SystemException )
virtual CORBA::Boolean enable_network_priority ()=0 throw ( CORBA::SystemException )
virtual void enable_network_priority (::CORBA::Boolean enable_network_priority)=0 throw ( CORBA::SystemException )
virtual CORBA::Boolean _is_a (const char *type_id)
virtual const char * _interface_repository_id (void) const
virtual CORBA::Boolean marshal (TAO_OutputCDR &cdr)

Static Public Member Functions

TCPProtocolProperties_ptr _duplicate (TCPProtocolProperties_ptr obj)
void _tao_release (TCPProtocolProperties_ptr obj)
TCPProtocolProperties_ptr _narrow (CORBA::Object_ptr obj)
TCPProtocolProperties_ptr _unchecked_narrow (CORBA::Object_ptr obj)
TCPProtocolProperties_ptr _nil (void)
void _tao_any_destructor (void *)

Public Attributes

attribute long send_buffer_size
attribute long recv_buffer_size
attribute boolean keep_alive
attribute boolean dont_route
attribute boolean no_delay
attribute boolean enable_network_priority

Protected Member Functions

 TCPProtocolProperties (void)
virtual ~TCPProtocolProperties (void)

Private Member Functions

 TCPProtocolProperties (const TCPProtocolProperties &)
void operator= (const TCPProtocolProperties &)

Member Typedef Documentation

typedef TCPProtocolProperties_ptr RTCORBA::TCPProtocolProperties::_ptr_type
 

Implements RTCORBA::ProtocolProperties.

Definition at line 1069 of file RTCORBAC.h.

typedef TCPProtocolProperties_var RTCORBA::TCPProtocolProperties::_var_type
 

Implements RTCORBA::ProtocolProperties.

Definition at line 1070 of file RTCORBAC.h.


Constructor & Destructor Documentation

RTCORBA::TCPProtocolProperties::TCPProtocolProperties void   )  [protected]
 

Definition at line 1032 of file RTCORBAC.cpp.

01033 {}

RTCORBA::TCPProtocolProperties::~TCPProtocolProperties void   )  [protected, virtual]
 

Definition at line 1035 of file RTCORBAC.cpp.

01036 {}

RTCORBA::TCPProtocolProperties::TCPProtocolProperties const TCPProtocolProperties  )  [private]
 


Member Function Documentation

RTCORBA::TCPProtocolProperties_ptr RTCORBA::TCPProtocolProperties::_duplicate TCPProtocolProperties_ptr  obj  )  [static]
 

Definition at line 1069 of file RTCORBAC.cpp.

References CORBA::Object::_add_ref(), and RTCORBA::TCPProtocolProperties_ptr.

Referenced by operator<<=().

01070 {
01071   if (! ::CORBA::is_nil (obj))
01072     {
01073       obj->_add_ref ();
01074     }
01075 
01076   return obj;
01077 }

const char * RTCORBA::TCPProtocolProperties::_interface_repository_id void   )  const [virtual]
 

Implements RTCORBA::ProtocolProperties.

Definition at line 1118 of file RTCORBAC.cpp.

01119 {
01120   return "IDL:omg.org/RTCORBA/TCPProtocolProperties:1.0";
01121 }

CORBA::Boolean RTCORBA::TCPProtocolProperties::_is_a const char *  type_id  )  [virtual]
 

Implements RTCORBA::ProtocolProperties.

Definition at line 1086 of file RTCORBAC.cpp.

References ACE_OS::strcmp().

01090 {
01091   if (
01092       !ACE_OS::strcmp (
01093           value,
01094           "IDL:omg.org/RTCORBA/ProtocolProperties:1.0"
01095         ) ||
01096       !ACE_OS::strcmp (
01097           value,
01098           "IDL:omg.org/RTCORBA/TCPProtocolProperties:1.0"
01099         ) ||
01100       !ACE_OS::strcmp (
01101           value,
01102           "IDL:omg.org/CORBA/LocalObject:1.0"
01103         ) ||
01104       !ACE_OS::strcmp (
01105           value,
01106           "IDL:omg.org/CORBA/Object:1.0"
01107         )
01108     )
01109     {
01110       return true; // success using local knowledge
01111     }
01112   else
01113     {
01114       return false;
01115     }
01116 }

RTCORBA::TCPProtocolProperties_ptr RTCORBA::TCPProtocolProperties::_narrow CORBA::Object_ptr  obj  )  [static]
 

Implements RTCORBA::ProtocolProperties.

Definition at line 1047 of file RTCORBAC.cpp.

Referenced by TAO_RT_Protocols_Hooks::extract_protocol_properties(), and TAO_RT_Protocols_Hooks::set_network_priority().

01051 {
01052   return TCPProtocolProperties::_duplicate (
01053       dynamic_cast<TCPProtocolProperties_ptr> (_tao_objref)
01054     );
01055 }

TCPProtocolProperties_ptr RTCORBA::TCPProtocolProperties::_nil void   )  [inline, static]
 

Implements RTCORBA::ProtocolProperties.

Definition at line 1087 of file RTCORBAC.h.

References RTCORBA::TCPProtocolProperties_ptr.

01088     {
01089       return static_cast<TCPProtocolProperties_ptr> (0);
01090     }

void RTCORBA::TCPProtocolProperties::_tao_any_destructor void *   )  [static]
 

Implements RTCORBA::ProtocolProperties.

Definition at line 1039 of file RTCORBAC.cpp.

01040 {
01041   TCPProtocolProperties *_tao_tmp_pointer =
01042     static_cast<TCPProtocolProperties *> (_tao_void_pointer);
01043   ::CORBA::release (_tao_tmp_pointer);
01044 }

void RTCORBA::TCPProtocolProperties::_tao_release TCPProtocolProperties_ptr  obj  )  [static]
 

Definition at line 1080 of file RTCORBAC.cpp.

References RTCORBA::TCPProtocolProperties_ptr.

01081 {
01082   ::CORBA::release (obj);
01083 }

RTCORBA::TCPProtocolProperties_ptr RTCORBA::TCPProtocolProperties::_unchecked_narrow CORBA::Object_ptr  obj  )  [static]
 

Implements RTCORBA::ProtocolProperties.

Definition at line 1058 of file RTCORBAC.cpp.

01062 {
01063   return TCPProtocolProperties::_duplicate (
01064       dynamic_cast<TCPProtocolProperties_ptr> (_tao_objref)
01065     );
01066 }

virtual void RTCORBA::TCPProtocolProperties::dont_route ::CORBA::Boolean  dont_route  )  throw ( CORBA::SystemException ) [pure virtual]
 

virtual CORBA::Boolean RTCORBA::TCPProtocolProperties::dont_route  )  throw ( CORBA::SystemException ) [pure virtual]
 

Implemented in TAO_TCP_Protocol_Properties.

virtual void RTCORBA::TCPProtocolProperties::enable_network_priority ::CORBA::Boolean  enable_network_priority  )  throw ( CORBA::SystemException ) [pure virtual]
 

virtual CORBA::Boolean RTCORBA::TCPProtocolProperties::enable_network_priority  )  throw ( CORBA::SystemException ) [pure virtual]
 

Implemented in TAO_TCP_Protocol_Properties.

virtual void RTCORBA::TCPProtocolProperties::keep_alive ::CORBA::Boolean  keep_alive  )  throw ( CORBA::SystemException ) [pure virtual]
 

virtual CORBA::Boolean RTCORBA::TCPProtocolProperties::keep_alive  )  throw ( CORBA::SystemException ) [pure virtual]
 

Implemented in TAO_TCP_Protocol_Properties.

CORBA::Boolean RTCORBA::TCPProtocolProperties::marshal TAO_OutputCDR cdr  )  [virtual]
 

Implements RTCORBA::ProtocolProperties.

Definition at line 1124 of file RTCORBAC.cpp.

01125 {
01126   return false;
01127 }

virtual void RTCORBA::TCPProtocolProperties::no_delay ::CORBA::Boolean  no_delay  )  throw ( CORBA::SystemException ) [pure virtual]
 

virtual CORBA::Boolean RTCORBA::TCPProtocolProperties::no_delay  )  throw ( CORBA::SystemException ) [pure virtual]
 

Implemented in TAO_TCP_Protocol_Properties.

void RTCORBA::TCPProtocolProperties::operator= const TCPProtocolProperties  )  [private]
 

virtual void RTCORBA::TCPProtocolProperties::recv_buffer_size ::CORBA::Long  recv_buffer_size  )  throw ( CORBA::SystemException ) [pure virtual]
 

virtual CORBA::Long RTCORBA::TCPProtocolProperties::recv_buffer_size  )  throw ( CORBA::SystemException ) [pure virtual]
 

Implemented in TAO_TCP_Protocol_Properties.

virtual void RTCORBA::TCPProtocolProperties::send_buffer_size ::CORBA::Long  send_buffer_size  )  throw ( CORBA::SystemException ) [pure virtual]
 

virtual CORBA::Long RTCORBA::TCPProtocolProperties::send_buffer_size  )  throw ( CORBA::SystemException ) [pure virtual]
 

Implemented in TAO_TCP_Protocol_Properties.


Member Data Documentation

attribute boolean RTCORBA::TCPProtocolProperties::dont_route
 

Definition at line 150 of file RTCORBA.pidl.

attribute boolean RTCORBA::TCPProtocolProperties::enable_network_priority
 

Definition at line 152 of file RTCORBA.pidl.

attribute boolean RTCORBA::TCPProtocolProperties::keep_alive
 

Definition at line 149 of file RTCORBA.pidl.

attribute boolean RTCORBA::TCPProtocolProperties::no_delay
 

Definition at line 151 of file RTCORBA.pidl.

attribute long RTCORBA::TCPProtocolProperties::recv_buffer_size
 

Definition at line 148 of file RTCORBA.pidl.

attribute long RTCORBA::TCPProtocolProperties::send_buffer_size
 

Definition at line 147 of file RTCORBA.pidl.


The documentation for this interface was generated from the following files:
Generated on Thu Nov 9 13:00:32 2006 for TAO_RTCORBA by doxygen 1.3.6