| removeCorbaConverter {CORBA} | R Documentation |
This function is the reciprocal of addCorbaConverter
and arranges to remove the registered routine or function name
from the internal list of object converters which are used
when converting objects between R and CORBA.
This conversion happens when objects are passed as arguments
to CORBA calls and return values from CORBA servers implemented
in R.
removeCorbaConverter(idlName, toCorba=T)
idlName |
string identifying the IDL type with which the converter was previously registered. |
toCorba |
logical indicating whether the
converter is from R to CORBA (TRUE) or
the opposite direction (FALSE)
|
The lists of converters are stored internally, but can be
retrieved and restored using the getCorbaConverters
and addCorbaConverter.
Returns the value of the element in the converter
list for the specified IDL type.
This allows one to restore this at a later
stage.
The value is a list containing two elements -
symbols which is a named character vector
contain the name
of the C/C++ routine or R function,
and types, which is a named
integer vector indicating the type
the corresponding symbols element:
an interpreted function or native routine.
The names of each of these vectors are the
IDL type.
Duncan Temple Lang
addCorbaConverter, getCorbaConverters