J-Integra® Espresso Programming Documentation (API)

ORB.create_recursive_sequence_tc Method

Deprecated. Use a combination of create_recursive_tc and create_sequence_tc instead.

Creates a TypeCode object representing a a recursive IDL sequence.

In following code sample, the offset parameter for creating the sequence would be 1:

   struct GraphNode
   {
     long value;
     sequence <GraphNode> nodes;
   };
			
Ics.CORBA.TypeCode create_recursive_sequences_tc(
 int bound,
 int offset,
);

Parameters

bound
the bound for the sequence, 0 if unbounded.
offset
the index to the enclosing TypeCode object that describes the elements of this sequence.

Return Value

the newly-created TypeCode object describing a recursive sequence.

Remarks

none

Exceptions

none

See Also

create_recursive_tc |create_sequence_tc |ORB Interface | ORB Members | Ics Namespace