Acspy.Common.Callbacks
index
/alma/ACS-2016.6/ACSSW/lib/python/site-packages/Acspy/Common/Callbacks.py

This module includes the implementations of Python void and valued ACS callback
classes for use in Python applications.  It was contributed by developers from
the Atacama Pathfinder Experiment Project
 
Todo:
-

 
Modules
       
ACS__POA

 
Classes
       
ACS__POA.CBvoid(ACS__POA.Callback)
CBvoid
__builtin__.object
BaseValueCB
CBbool(BaseValueCB, ACS__POA.CBBool)
CBdouble(BaseValueCB, ACS__POA.CBdouble)
CBdoubleSeq(BaseValueCB, ACS__POA.CBdoubleSeq)
CBfloat(BaseValueCB, ACS__POA.CBfloat)
CBfloatSeq(BaseValueCB, ACS__POA.CBfloatSeq)
CBlong(BaseValueCB, ACS__POA.CBlong)
CBlongLong(BaseValueCB, ACS__POA.CBlongLong)
CBlongSeq(BaseValueCB, ACS__POA.CBlongSeq)
CBonOffSwitch(BaseValueCB, ACS__POA.CBOnOffSwitch)
CBpattern(BaseValueCB, ACS__POA.CBpattern)
CBstring(BaseValueCB, ACS__POA.CBstring)
CBstringSeq(BaseValueCB, ACS__POA.CBstringSeq)
CBuLongLong(BaseValueCB, ACS__POA.CBuLongLong)

 
class BaseValueCB(__builtin__.object)
    This is the baseclass for all CB classes which use actual values (i.e.,
not void).
 
  Methods defined here:
__init__(self, name, archive)
Constructor.
 
Parameters:
- name of this callback instance
- archive set to false implies values retrieved from the working method
are not saved
 
Raises: Nothing
done(self, value, completion, desc)
Invoked asynchronously when the DO has finished. Normally this is
invoked just before a monitor is destroyed or when an asynchronous
method has finished.
 
Parameters:
- value is the value we are interested in
- completion is a CORBA completion structure
- desc is callback struct description
 
Returns: Nothing
 
Raises: Nothing
last(self)
Return the last value received by the DO.
 
Parameters: None.
 
Returns: last archived value
 
Raises: Nothing
negotiate(self, time_to_transmit, desc)
For simplicitys sake, we always return true. If you want more detailed
information on this method, please see the BACI specs.
 
Parameters: See the BACI specs.
 
Returns: Nothing
 
Raises: Nothing
working(self, value, completion, desc)
Really this is the method that does all the work and is what the
developer should be concerned with.
 
Parameters:
- value is the value we are interested in
- completion is a CORBA completion structure
- desc is callback struct description
 
Returns: Nothing
 
Raises: Nothing

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class CBbool(BaseValueCB, ACS__POA.CBBool)
    This class defines the method(s) that will be invoked asynchronously by the
device for any monitors we may create.
 
 
Method resolution order:
CBbool
BaseValueCB
ACS__POA.CBBool
ACS__POA.Callback
ACS__POA.OffShoot
omniORB.PortableServer.Servant
__builtin__.object

Methods defined here:
__init__(self, name=None, archive=0)
Constructor.
 
Parameters: name of this callback instance
 
Raises: Nothing

Methods inherited from BaseValueCB:
done(self, value, completion, desc)
Invoked asynchronously when the DO has finished. Normally this is
invoked just before a monitor is destroyed or when an asynchronous
method has finished.
 
Parameters:
- value is the value we are interested in
- completion is a CORBA completion structure
- desc is callback struct description
 
Returns: Nothing
 
Raises: Nothing
last(self)
Return the last value received by the DO.
 
Parameters: None.
 
Returns: last archived value
 
Raises: Nothing
negotiate(self, time_to_transmit, desc)
For simplicitys sake, we always return true. If you want more detailed
information on this method, please see the BACI specs.
 
Parameters: See the BACI specs.
 
Returns: Nothing
 
Raises: Nothing
working(self, value, completion, desc)
Really this is the method that does all the work and is what the
developer should be concerned with.
 
Parameters:
- value is the value we are interested in
- completion is a CORBA completion structure
- desc is callback struct description
 
Returns: Nothing
 
Raises: Nothing

Data descriptors inherited from BaseValueCB:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class CBdouble(BaseValueCB, ACS__POA.CBdouble)
    This class defines the method(s) that will be invoked asynchronously by the
device for any monitors we may create.
 
 
Method resolution order:
CBdouble
BaseValueCB
ACS__POA.CBdouble
ACS__POA.Callback
ACS__POA.OffShoot
omniORB.PortableServer.Servant
__builtin__.object

Methods defined here:
__init__(self, name=None, archive=0)
Constructor.
 
Parameters: name of this callback instance
 
Raises: Nothing

Methods inherited from BaseValueCB:
done(self, value, completion, desc)
Invoked asynchronously when the DO has finished. Normally this is
invoked just before a monitor is destroyed or when an asynchronous
method has finished.
 
Parameters:
- value is the value we are interested in
- completion is a CORBA completion structure
- desc is callback struct description
 
Returns: Nothing
 
Raises: Nothing
last(self)
Return the last value received by the DO.
 
Parameters: None.
 
Returns: last archived value
 
Raises: Nothing
negotiate(self, time_to_transmit, desc)
For simplicitys sake, we always return true. If you want more detailed
information on this method, please see the BACI specs.
 
Parameters: See the BACI specs.
 
Returns: Nothing
 
Raises: Nothing
working(self, value, completion, desc)
Really this is the method that does all the work and is what the
developer should be concerned with.
 
Parameters:
- value is the value we are interested in
- completion is a CORBA completion structure
- desc is callback struct description
 
Returns: Nothing
 
Raises: Nothing

Data descriptors inherited from BaseValueCB:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class CBdoubleSeq(BaseValueCB, ACS__POA.CBdoubleSeq)
    This class defines the method(s) that will be invoked asynchronously by the
device for any monitors we may create.
 
 
Method resolution order:
CBdoubleSeq
BaseValueCB
ACS__POA.CBdoubleSeq
ACS__POA.Callback
ACS__POA.OffShoot
omniORB.PortableServer.Servant
__builtin__.object

Methods defined here:
__init__(self, name=None, archive=0)
Constructor.
 
Parameters: name of this callback instance
 
Raises: Nothing

Methods inherited from BaseValueCB:
done(self, value, completion, desc)
Invoked asynchronously when the DO has finished. Normally this is
invoked just before a monitor is destroyed or when an asynchronous
method has finished.
 
Parameters:
- value is the value we are interested in
- completion is a CORBA completion structure
- desc is callback struct description
 
Returns: Nothing
 
Raises: Nothing
last(self)
Return the last value received by the DO.
 
Parameters: None.
 
Returns: last archived value
 
Raises: Nothing
negotiate(self, time_to_transmit, desc)
For simplicitys sake, we always return true. If you want more detailed
information on this method, please see the BACI specs.
 
Parameters: See the BACI specs.
 
Returns: Nothing
 
Raises: Nothing
working(self, value, completion, desc)
Really this is the method that does all the work and is what the
developer should be concerned with.
 
Parameters:
- value is the value we are interested in
- completion is a CORBA completion structure
- desc is callback struct description
 
Returns: Nothing
 
Raises: Nothing

Data descriptors inherited from BaseValueCB:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class CBfloat(BaseValueCB, ACS__POA.CBfloat)
    This class defines the method(s) that will be invoked asynchronously by the
device for any monitors we may create.
 
 
Method resolution order:
CBfloat
BaseValueCB
ACS__POA.CBfloat
ACS__POA.Callback
ACS__POA.OffShoot
omniORB.PortableServer.Servant
__builtin__.object

Methods defined here:
__init__(self, name=None, archive=0)
Constructor.
 
Parameters: name of this callback instance
 
Raises: Nothing

Methods inherited from BaseValueCB:
done(self, value, completion, desc)
Invoked asynchronously when the DO has finished. Normally this is
invoked just before a monitor is destroyed or when an asynchronous
method has finished.
 
Parameters:
- value is the value we are interested in
- completion is a CORBA completion structure
- desc is callback struct description
 
Returns: Nothing
 
Raises: Nothing
last(self)
Return the last value received by the DO.
 
Parameters: None.
 
Returns: last archived value
 
Raises: Nothing
negotiate(self, time_to_transmit, desc)
For simplicitys sake, we always return true. If you want more detailed
information on this method, please see the BACI specs.
 
Parameters: See the BACI specs.
 
Returns: Nothing
 
Raises: Nothing
working(self, value, completion, desc)
Really this is the method that does all the work and is what the
developer should be concerned with.
 
Parameters:
- value is the value we are interested in
- completion is a CORBA completion structure
- desc is callback struct description
 
Returns: Nothing
 
Raises: Nothing

Data descriptors inherited from BaseValueCB:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class CBfloatSeq(BaseValueCB, ACS__POA.CBfloatSeq)
    This class defines the method(s) that will be invoked asynchronously by the
device for any monitors we may create.
 
 
Method resolution order:
CBfloatSeq
BaseValueCB
ACS__POA.CBfloatSeq
ACS__POA.Callback
ACS__POA.OffShoot
omniORB.PortableServer.Servant
__builtin__.object

Methods defined here:
__init__(self, name=None, archive=0)
Constructor.
 
Parameters: name of this callback instance
 
Raises: Nothing

Methods inherited from BaseValueCB:
done(self, value, completion, desc)
Invoked asynchronously when the DO has finished. Normally this is
invoked just before a monitor is destroyed or when an asynchronous
method has finished.
 
Parameters:
- value is the value we are interested in
- completion is a CORBA completion structure
- desc is callback struct description
 
Returns: Nothing
 
Raises: Nothing
last(self)
Return the last value received by the DO.
 
Parameters: None.
 
Returns: last archived value
 
Raises: Nothing
negotiate(self, time_to_transmit, desc)
For simplicitys sake, we always return true. If you want more detailed
information on this method, please see the BACI specs.
 
Parameters: See the BACI specs.
 
Returns: Nothing
 
Raises: Nothing
working(self, value, completion, desc)
Really this is the method that does all the work and is what the
developer should be concerned with.
 
Parameters:
- value is the value we are interested in
- completion is a CORBA completion structure
- desc is callback struct description
 
Returns: Nothing
 
Raises: Nothing

Data descriptors inherited from BaseValueCB:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class CBlong(BaseValueCB, ACS__POA.CBlong)
    This class defines the method(s) that will be invoked asynchronously by the
device for any monitors we may create.
 
 
Method resolution order:
CBlong
BaseValueCB
ACS__POA.CBlong
ACS__POA.Callback
ACS__POA.OffShoot
omniORB.PortableServer.Servant
__builtin__.object

Methods defined here:
__init__(self, name=None, archive=0)
Constructor.
 
Parameters: name of this callback instance
 
Raises: Nothing

Methods inherited from BaseValueCB:
done(self, value, completion, desc)
Invoked asynchronously when the DO has finished. Normally this is
invoked just before a monitor is destroyed or when an asynchronous
method has finished.
 
Parameters:
- value is the value we are interested in
- completion is a CORBA completion structure
- desc is callback struct description
 
Returns: Nothing
 
Raises: Nothing
last(self)
Return the last value received by the DO.
 
Parameters: None.
 
Returns: last archived value
 
Raises: Nothing
negotiate(self, time_to_transmit, desc)
For simplicitys sake, we always return true. If you want more detailed
information on this method, please see the BACI specs.
 
Parameters: See the BACI specs.
 
Returns: Nothing
 
Raises: Nothing
working(self, value, completion, desc)
Really this is the method that does all the work and is what the
developer should be concerned with.
 
Parameters:
- value is the value we are interested in
- completion is a CORBA completion structure
- desc is callback struct description
 
Returns: Nothing
 
Raises: Nothing

Data descriptors inherited from BaseValueCB:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class CBlongLong(BaseValueCB, ACS__POA.CBlongLong)
    This class defines the method(s) that will be invoked asynchronously by the
device for any monitors we may create.
 
 
Method resolution order:
CBlongLong
BaseValueCB
ACS__POA.CBlongLong
ACS__POA.Callback
ACS__POA.OffShoot
omniORB.PortableServer.Servant
__builtin__.object

Methods defined here:
__init__(self, name=None, archive=0)
Constructor.
 
Parameters: name of this callback instance
 
Raises: Nothing

Methods inherited from BaseValueCB:
done(self, value, completion, desc)
Invoked asynchronously when the DO has finished. Normally this is
invoked just before a monitor is destroyed or when an asynchronous
method has finished.
 
Parameters:
- value is the value we are interested in
- completion is a CORBA completion structure
- desc is callback struct description
 
Returns: Nothing
 
Raises: Nothing
last(self)
Return the last value received by the DO.
 
Parameters: None.
 
Returns: last archived value
 
Raises: Nothing
negotiate(self, time_to_transmit, desc)
For simplicitys sake, we always return true. If you want more detailed
information on this method, please see the BACI specs.
 
Parameters: See the BACI specs.
 
Returns: Nothing
 
Raises: Nothing
working(self, value, completion, desc)
Really this is the method that does all the work and is what the
developer should be concerned with.
 
Parameters:
- value is the value we are interested in
- completion is a CORBA completion structure
- desc is callback struct description
 
Returns: Nothing
 
Raises: Nothing

Data descriptors inherited from BaseValueCB:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class CBlongSeq(BaseValueCB, ACS__POA.CBlongSeq)
    This class defines the method(s) that will be invoked asynchronously by the
device for any monitors we may create.
 
 
Method resolution order:
CBlongSeq
BaseValueCB
ACS__POA.CBlongSeq
ACS__POA.Callback
ACS__POA.OffShoot
omniORB.PortableServer.Servant
__builtin__.object

Methods defined here:
__init__(self, name=None, archive=0)
Constructor.
 
Parameters: name of this callback instance
 
Raises: Nothing

Methods inherited from BaseValueCB:
done(self, value, completion, desc)
Invoked asynchronously when the DO has finished. Normally this is
invoked just before a monitor is destroyed or when an asynchronous
method has finished.
 
Parameters:
- value is the value we are interested in
- completion is a CORBA completion structure
- desc is callback struct description
 
Returns: Nothing
 
Raises: Nothing
last(self)
Return the last value received by the DO.
 
Parameters: None.
 
Returns: last archived value
 
Raises: Nothing
negotiate(self, time_to_transmit, desc)
For simplicitys sake, we always return true. If you want more detailed
information on this method, please see the BACI specs.
 
Parameters: See the BACI specs.
 
Returns: Nothing
 
Raises: Nothing
working(self, value, completion, desc)
Really this is the method that does all the work and is what the
developer should be concerned with.
 
Parameters:
- value is the value we are interested in
- completion is a CORBA completion structure
- desc is callback struct description
 
Returns: Nothing
 
Raises: Nothing

Data descriptors inherited from BaseValueCB:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class CBonOffSwitch(BaseValueCB, ACS__POA.CBOnOffSwitch)
    This class defines the method(s) that will be invoked asynchronously by the
device for any monitors we may create.
 
 
Method resolution order:
CBonOffSwitch
BaseValueCB
ACS__POA.CBOnOffSwitch
ACS__POA.Callback
ACS__POA.OffShoot
omniORB.PortableServer.Servant
__builtin__.object

Methods defined here:
__init__(self, name=None, archive=0)
Constructor.
 
Parameters: name of this callback instance
 
Raises: Nothing

Methods inherited from BaseValueCB:
done(self, value, completion, desc)
Invoked asynchronously when the DO has finished. Normally this is
invoked just before a monitor is destroyed or when an asynchronous
method has finished.
 
Parameters:
- value is the value we are interested in
- completion is a CORBA completion structure
- desc is callback struct description
 
Returns: Nothing
 
Raises: Nothing
last(self)
Return the last value received by the DO.
 
Parameters: None.
 
Returns: last archived value
 
Raises: Nothing
negotiate(self, time_to_transmit, desc)
For simplicitys sake, we always return true. If you want more detailed
information on this method, please see the BACI specs.
 
Parameters: See the BACI specs.
 
Returns: Nothing
 
Raises: Nothing
working(self, value, completion, desc)
Really this is the method that does all the work and is what the
developer should be concerned with.
 
Parameters:
- value is the value we are interested in
- completion is a CORBA completion structure
- desc is callback struct description
 
Returns: Nothing
 
Raises: Nothing

Data descriptors inherited from BaseValueCB:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class CBpattern(BaseValueCB, ACS__POA.CBpattern)
    This class defines the method(s) that will be invoked asynchronously by the
device for any monitors we may create.
 
 
Method resolution order:
CBpattern
BaseValueCB
ACS__POA.CBpattern
ACS__POA.Callback
ACS__POA.OffShoot
omniORB.PortableServer.Servant
__builtin__.object

Methods defined here:
__init__(self, name=None, archive=0)
Constructor.
 
Parameters: name of this callback instance
 
Raises: Nothing

Methods inherited from BaseValueCB:
done(self, value, completion, desc)
Invoked asynchronously when the DO has finished. Normally this is
invoked just before a monitor is destroyed or when an asynchronous
method has finished.
 
Parameters:
- value is the value we are interested in
- completion is a CORBA completion structure
- desc is callback struct description
 
Returns: Nothing
 
Raises: Nothing
last(self)
Return the last value received by the DO.
 
Parameters: None.
 
Returns: last archived value
 
Raises: Nothing
negotiate(self, time_to_transmit, desc)
For simplicitys sake, we always return true. If you want more detailed
information on this method, please see the BACI specs.
 
Parameters: See the BACI specs.
 
Returns: Nothing
 
Raises: Nothing
working(self, value, completion, desc)
Really this is the method that does all the work and is what the
developer should be concerned with.
 
Parameters:
- value is the value we are interested in
- completion is a CORBA completion structure
- desc is callback struct description
 
Returns: Nothing
 
Raises: Nothing

Data descriptors inherited from BaseValueCB:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class CBstring(BaseValueCB, ACS__POA.CBstring)
    This class defines the method(s) that will be invoked asynchronously by the
device for any monitors we may create.
 
 
Method resolution order:
CBstring
BaseValueCB
ACS__POA.CBstring
ACS__POA.Callback
ACS__POA.OffShoot
omniORB.PortableServer.Servant
__builtin__.object

Methods defined here:
__init__(self, name=None, archive=0)
Constructor.
 
Parameters: name of this callback instance
 
Raises: Nothing

Methods inherited from BaseValueCB:
done(self, value, completion, desc)
Invoked asynchronously when the DO has finished. Normally this is
invoked just before a monitor is destroyed or when an asynchronous
method has finished.
 
Parameters:
- value is the value we are interested in
- completion is a CORBA completion structure
- desc is callback struct description
 
Returns: Nothing
 
Raises: Nothing
last(self)
Return the last value received by the DO.
 
Parameters: None.
 
Returns: last archived value
 
Raises: Nothing
negotiate(self, time_to_transmit, desc)
For simplicitys sake, we always return true. If you want more detailed
information on this method, please see the BACI specs.
 
Parameters: See the BACI specs.
 
Returns: Nothing
 
Raises: Nothing
working(self, value, completion, desc)
Really this is the method that does all the work and is what the
developer should be concerned with.
 
Parameters:
- value is the value we are interested in
- completion is a CORBA completion structure
- desc is callback struct description
 
Returns: Nothing
 
Raises: Nothing

Data descriptors inherited from BaseValueCB:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class CBstringSeq(BaseValueCB, ACS__POA.CBstringSeq)
    This class defines the method(s) that will be invoked asynchronously by the
device for any monitors we may create.
 
 
Method resolution order:
CBstringSeq
BaseValueCB
ACS__POA.CBstringSeq
ACS__POA.Callback
ACS__POA.OffShoot
omniORB.PortableServer.Servant
__builtin__.object

Methods defined here:
__init__(self, name=None, archive=0)
Constructor.
 
Parameters: name of this callback instance
 
Raises: Nothing

Methods inherited from BaseValueCB:
done(self, value, completion, desc)
Invoked asynchronously when the DO has finished. Normally this is
invoked just before a monitor is destroyed or when an asynchronous
method has finished.
 
Parameters:
- value is the value we are interested in
- completion is a CORBA completion structure
- desc is callback struct description
 
Returns: Nothing
 
Raises: Nothing
last(self)
Return the last value received by the DO.
 
Parameters: None.
 
Returns: last archived value
 
Raises: Nothing
negotiate(self, time_to_transmit, desc)
For simplicitys sake, we always return true. If you want more detailed
information on this method, please see the BACI specs.
 
Parameters: See the BACI specs.
 
Returns: Nothing
 
Raises: Nothing
working(self, value, completion, desc)
Really this is the method that does all the work and is what the
developer should be concerned with.
 
Parameters:
- value is the value we are interested in
- completion is a CORBA completion structure
- desc is callback struct description
 
Returns: Nothing
 
Raises: Nothing

Data descriptors inherited from BaseValueCB:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class CBuLongLong(BaseValueCB, ACS__POA.CBuLongLong)
    This class defines the method(s) that will be invoked asynchronously by the
device for any monitors we may create.
 
 
Method resolution order:
CBuLongLong
BaseValueCB
ACS__POA.CBuLongLong
ACS__POA.Callback
ACS__POA.OffShoot
omniORB.PortableServer.Servant
__builtin__.object

Methods defined here:
__init__(self, name=None, archive=0)
Constructor.
 
Parameters: name of this callback instance
 
Raises: Nothing

Methods inherited from BaseValueCB:
done(self, value, completion, desc)
Invoked asynchronously when the DO has finished. Normally this is
invoked just before a monitor is destroyed or when an asynchronous
method has finished.
 
Parameters:
- value is the value we are interested in
- completion is a CORBA completion structure
- desc is callback struct description
 
Returns: Nothing
 
Raises: Nothing
last(self)
Return the last value received by the DO.
 
Parameters: None.
 
Returns: last archived value
 
Raises: Nothing
negotiate(self, time_to_transmit, desc)
For simplicitys sake, we always return true. If you want more detailed
information on this method, please see the BACI specs.
 
Parameters: See the BACI specs.
 
Returns: Nothing
 
Raises: Nothing
working(self, value, completion, desc)
Really this is the method that does all the work and is what the
developer should be concerned with.
 
Parameters:
- value is the value we are interested in
- completion is a CORBA completion structure
- desc is callback struct description
 
Returns: Nothing
 
Raises: Nothing

Data descriptors inherited from BaseValueCB:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class CBvoid(ACS__POA.CBvoid)
    This class defines the method(s) that will be invoked asynchronously by the
device for any monitors we may create for void callbacks
 
 
Method resolution order:
CBvoid
ACS__POA.CBvoid
ACS__POA.Callback
ACS__POA.OffShoot
omniORB.PortableServer.Servant
__builtin__.object

Methods defined here:
__init__(self, name=None)
Constructor.
 
Parameters: name of this callback instance
 
Raises: Nothing
done(self, completion, desc)
Invoked asynchronously when the component has finished. Normally this
is invoked just before a monitor is destroyed or when an asynchronous
method has finished.
 
Parameters:
- completion is a CORBA completion structure
- desc is callback struct description
 
Returns: Nothing
 
Raises: Nothing
negotiate(self, time_to_transmit, desc)
For simplicitys sake, we always return true. If you want more detailed
information on this method, please see the BACI specs.
 
Parameters: See the BACI specs.
 
Returns: Nothing
 
Raises: Nothing
working(self, completion, desc)
Really this is the method that does all the work and is what the
developer should be concerned with.
 
Parameters:
- completion is a CORBA completion structure
- desc is callback struct description
 
Returns: Nothing
 
Raises: Nothing

Data descriptors inherited from omniORB.PortableServer.Servant:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
Data
        TRUE = True
__revision__ = '$Id: Callbacks.py,v 1.1.1.1 2012/03/07 17:40:45 acaproni Exp $'