TAO_PortableServer
2.1.6
|
Helper class for using binary search operatin lookup strategy in the server skeletons. More...
#include <Operation_Table_Binary_Search.h>
Public Member Functions | |
virtual | ~TAO_Binary_Search_OpTable (void) |
Do nothing destrctor. | |
virtual int | find (const char *opname, TAO_Skeleton &skelfunc, const unsigned int length=0) |
See the documentation in the base class for details. | |
virtual int | find (const char *opname, TAO_Collocated_Skeleton &skelfunc, TAO::Collocation_Strategy s, const unsigned int length=0) |
virtual int | bind (const char *opname, const TAO::Operation_Skeletons skel_ptr) |
Public Member Functions inherited from TAO_Operation_Table | |
virtual | ~TAO_Operation_Table (void) |
Private Member Functions | |
virtual const TAO_operation_db_entry * | lookup (const char *str)=0 |
Helper class for using binary search operatin lookup strategy in the server skeletons.
This class declares pure virtual method called 'lookup ()' which will be generated by the GPERF program. This method is used by 'bind ()' and 'find ()' methods. Subclasses will define the lookup method.
|
virtual |
Do nothing destrctor.
|
virtual |
Associate the skeleton skel_ptr with an operation named opname. Returns -1 on failure, 0 on success, 1 on duplicate.
Implements TAO_Operation_Table.
|
virtual |
See the documentation in the base class for details.
Implements TAO_Operation_Table.
|
virtual |
Uses opname to look up the collocated skeleton function and pass it back in skelfunc. Returns non-negative integer on success, or -1 on failure.
Implements TAO_Operation_Table.
|
privatepure virtual |
Method that should defined by the subclasses. GPERF program will generate this routine routines.