TIBCO Adapter SDK C++ Reference
MSequence Methods
MSequence | Legend
Methods
Method Description
[] Return the data element at the specified position in the MSequence.
== Return true if this MSequence instance is equal to the MSequence passed in as an argument, false otherwise. Equal means that all elements of the MSequence are equal.
append Inserts the data encapsulated by pMData at the end of the list encapsulated by this MSequence. The caller keeps the ownership.
append Inserts the data encapsulated by pMData at the end of the list encapsulated by this MSequence. The caller keeps the ownership.
clear Clears this MSequence. Applications can then call MSequence::append() to populate the MSequence.
deepCopy Makes an independent deep copy. All other copy operations are reference counted; this method allows you to make an independent copy as needed.
downCast Safe cast operation for MSequence instances.
downCast Safe cast operation for MSequence instances.
getClassDescription Return the MSequenceClassDescription (subclass of MBaseClassDescription) for this MSequence.
getClassName Return the name of this class as a char*.
MSequence Constructs an instance of MSequence. The copy constructor makes a copy of an existing MSequence. This copy points to a reference-counted sequence. The actual sequence data is not copied.
MSequence Creates a named empty MSequence with no data in the named class registry.

The constructor does not make a copy of the list of data. The caller is responsible for freeing the data once this MSequence instance is destroyed.

MSequence Constructs an instance of MSequence. This constructor creates an MSequence that encapsulates the data passed in. The constructor does not make a copy of the list of data. The caller is responsible for freeing the data once this MSequence instance is destroyed.
remove Removes the element at the specified position from this MSequence.
serialize Convert this MSequence instance to an MTree that can be sent on the network.

By default, messages are sent in MMessageFormat.AERV. The default can be overridden by the command line.

See "Transports, Wire Formats, and Message Formats" in TIBCO Adapter SDK Programmer's Guide.

See also MMessageFormat.

serialize Serializes this MSequence so it can be sent out as an MTree over the network.

By default, messages are sent in MMessageFormat.AERV. The default can be overridden by the command line.

See "Transports, Wire Formats, and Message Formats" in TIBCO Adapter SDK Programmer's Guide.

See also MMessageFormat.

size Returns the number of elements in the MSequence.
toString Converts this MSequence to an MString.
Copyright (c) 2010 TIBCO Software Inc. All rights reserved.