RTCORBA::StreamControlProtocolProperties Interface Reference

import "RTCORBA.pidl";

Inheritance diagram for RTCORBA::StreamControlProtocolProperties:

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

Collaboration graph
[legend]
List of all members.

Public Types

typedef StreamControlProtocolProperties_ptr _ptr_type
typedef StreamControlProtocolProperties_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

StreamControlProtocolProperties_ptr _duplicate (StreamControlProtocolProperties_ptr obj)
void _tao_release (StreamControlProtocolProperties_ptr obj)
StreamControlProtocolProperties_ptr _narrow (CORBA::Object_ptr obj)
StreamControlProtocolProperties_ptr _unchecked_narrow (CORBA::Object_ptr obj)
StreamControlProtocolProperties_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

 StreamControlProtocolProperties (void)
virtual ~StreamControlProtocolProperties (void)

Private Member Functions

 StreamControlProtocolProperties (const StreamControlProtocolProperties &)
void operator= (const StreamControlProtocolProperties &)

Member Typedef Documentation

typedef StreamControlProtocolProperties_ptr RTCORBA::StreamControlProtocolProperties::_ptr_type
 

Implements RTCORBA::ProtocolProperties.

Definition at line 1871 of file RTCORBAC.h.

typedef StreamControlProtocolProperties_var RTCORBA::StreamControlProtocolProperties::_var_type
 

Implements RTCORBA::ProtocolProperties.

Definition at line 1872 of file RTCORBAC.h.


Constructor & Destructor Documentation

RTCORBA::StreamControlProtocolProperties::StreamControlProtocolProperties void   )  [protected]
 

Definition at line 1697 of file RTCORBAC.cpp.

01698 {}

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

Definition at line 1700 of file RTCORBAC.cpp.

01701 {}

RTCORBA::StreamControlProtocolProperties::StreamControlProtocolProperties const StreamControlProtocolProperties  )  [private]
 


Member Function Documentation

RTCORBA::StreamControlProtocolProperties_ptr RTCORBA::StreamControlProtocolProperties::_duplicate StreamControlProtocolProperties_ptr  obj  )  [static]
 

Definition at line 1734 of file RTCORBAC.cpp.

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

Referenced by operator<<=().

01735 {
01736   if (! ::CORBA::is_nil (obj))
01737     {
01738       obj->_add_ref ();
01739     }
01740 
01741   return obj;
01742 }

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

Implements RTCORBA::ProtocolProperties.

Definition at line 1783 of file RTCORBAC.cpp.

01784 {
01785   return "IDL:omg.org/RTCORBA/StreamControlProtocolProperties:1.0";
01786 }

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

Implements RTCORBA::ProtocolProperties.

Definition at line 1751 of file RTCORBAC.cpp.

References ACE_OS::strcmp().

01755 {
01756   if (
01757       !ACE_OS::strcmp (
01758           value,
01759           "IDL:omg.org/RTCORBA/ProtocolProperties:1.0"
01760         ) ||
01761       !ACE_OS::strcmp (
01762           value,
01763           "IDL:omg.org/RTCORBA/StreamControlProtocolProperties:1.0"
01764         ) ||
01765       !ACE_OS::strcmp (
01766           value,
01767           "IDL:omg.org/CORBA/LocalObject:1.0"
01768         ) ||
01769       !ACE_OS::strcmp (
01770           value,
01771           "IDL:omg.org/CORBA/Object:1.0"
01772         )
01773     )
01774     {
01775       return true; // success using local knowledge
01776     }
01777   else
01778     {
01779       return false;
01780     }
01781 }

RTCORBA::StreamControlProtocolProperties_ptr RTCORBA::StreamControlProtocolProperties::_narrow CORBA::Object_ptr  obj  )  [static]
 

Implements RTCORBA::ProtocolProperties.

Definition at line 1712 of file RTCORBAC.cpp.

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

01716 {
01717   return StreamControlProtocolProperties::_duplicate (
01718       dynamic_cast<StreamControlProtocolProperties_ptr> (_tao_objref)
01719     );
01720 }

StreamControlProtocolProperties_ptr RTCORBA::StreamControlProtocolProperties::_nil void   )  [inline, static]
 

Implements RTCORBA::ProtocolProperties.

Definition at line 1889 of file RTCORBAC.h.

References RTCORBA::StreamControlProtocolProperties_ptr.

01890     {
01891       return static_cast<StreamControlProtocolProperties_ptr> (0);
01892     }

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

Implements RTCORBA::ProtocolProperties.

Definition at line 1704 of file RTCORBAC.cpp.

01705 {
01706   StreamControlProtocolProperties *_tao_tmp_pointer =
01707     static_cast<StreamControlProtocolProperties *> (_tao_void_pointer);
01708   ::CORBA::release (_tao_tmp_pointer);
01709 }

void RTCORBA::StreamControlProtocolProperties::_tao_release StreamControlProtocolProperties_ptr  obj  )  [static]
 

Definition at line 1745 of file RTCORBAC.cpp.

References RTCORBA::StreamControlProtocolProperties_ptr.

01746 {
01747   ::CORBA::release (obj);
01748 }

RTCORBA::StreamControlProtocolProperties_ptr RTCORBA::StreamControlProtocolProperties::_unchecked_narrow CORBA::Object_ptr  obj  )  [static]
 

Implements RTCORBA::ProtocolProperties.

Definition at line 1723 of file RTCORBAC.cpp.

01727 {
01728   return StreamControlProtocolProperties::_duplicate (
01729       dynamic_cast<StreamControlProtocolProperties_ptr> (_tao_objref)
01730     );
01731 }

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

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

Implemented in TAO_StreamControl_Protocol_Properties.

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

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

Implemented in TAO_StreamControl_Protocol_Properties.

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

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

Implemented in TAO_StreamControl_Protocol_Properties.

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

Implements RTCORBA::ProtocolProperties.

Definition at line 1789 of file RTCORBAC.cpp.

01790 {
01791   return false;
01792 }

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

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

Implemented in TAO_StreamControl_Protocol_Properties.

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

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

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

Implemented in TAO_StreamControl_Protocol_Properties.

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

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

Implemented in TAO_StreamControl_Protocol_Properties.


Member Data Documentation

attribute boolean RTCORBA::StreamControlProtocolProperties::dont_route
 

Definition at line 190 of file RTCORBA.pidl.

attribute boolean RTCORBA::StreamControlProtocolProperties::enable_network_priority
 

Definition at line 192 of file RTCORBA.pidl.

attribute boolean RTCORBA::StreamControlProtocolProperties::keep_alive
 

Definition at line 189 of file RTCORBA.pidl.

attribute boolean RTCORBA::StreamControlProtocolProperties::no_delay
 

Definition at line 191 of file RTCORBA.pidl.

attribute long RTCORBA::StreamControlProtocolProperties::recv_buffer_size
 

Definition at line 188 of file RTCORBA.pidl.

attribute long RTCORBA::StreamControlProtocolProperties::send_buffer_size
 

Definition at line 187 of file RTCORBA.pidl.


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