ActionScript 2.0 Components Language Reference |
|
|
|
| DeltaPacket interface > DeltaPacket.getTransactionId() | |||
Flash Player 7.
Flash MX Professional 2004.
deltaPacket.getTransactionId()
None.
A string; the unique transaction ID for a single transaction grouping of delta packets.
Method; returns the transaction ID for the delta packet. This unique identifier is used to group a send/receive transaction for a delta packet. The data set uses this to determine if the delta packet is part of the same transaction it originated with the DataSet.applyUpdates() call.
The following example calls the getTransactionId() method:
// ...
var deltapkt:DeltaPacket = _parent.myDataSet.deltaPacket;
trace("*** Trans ID is: " + deltapkt.getTransactionId() + " ***");
// ...
|
|
|
|