[Enterprise Extensions only]

Coordinator::get_status

Overview Returns the status of the transaction.
Original interface CosTransactions::Coordinator Interface


Intended Usage

The operation returns to a caller the status of the transaction associated with the target object.

IDL Syntax

  Status get_status();

Input parameters

None.

Return values

Status
The status of the transaction associated with the target object.

Examples

The following examples demonstrate the usage of CosTransactions::Coordinator::get_status.

C++ Example

  CosTransactions::Coordinator *coord;
  CosTransactions::Status *status;
  status = coord->get_status();
 

Java Example

  org.omg.CosTransactions.Coordinator coord;
  org.omg.CosTransactions.Status status;
  status = coord.get_status();