org.omg.CORBA
Interface TSIdentification


public abstract interface TSIdentification

The TSIdentification interface is defined in the OMG Transactions Service Specification. It provides methods to allow the JTS to register its Sender and Receiver interfaces with the ORB. The TSIdentification methods are always called from the same address space (i.e. it is a pseudo-object), hence it is not necessary to define any stubs/skeletons.


Method Summary
 void identify_receiver(Receiver receiverOTS)
          identify_receiver is called by the OTS during initialization to register its Receiver callback interface with the ORB.
 void identify_sender(Sender senderOTS)
          identify_sender is called by the OTS during initialization to register its Sender callback interface with the ORB.
 

Method Detail

identify_sender

public void identify_sender(Sender senderOTS)
                     throws org.omg.CORBA.TSIdentificationPackage.NotAvailable,
                            org.omg.CORBA.TSIdentificationPackage.AlreadyIdentified
identify_sender is called by the OTS during initialization to register its Sender callback interface with the ORB. identify_sender may throw a AlreadyIdentified exception if the registration has already been done previously.

identify_receiver

public void identify_receiver(Receiver receiverOTS)
                       throws org.omg.CORBA.TSIdentificationPackage.NotAvailable,
                              org.omg.CORBA.TSIdentificationPackage.AlreadyIdentified
identify_receiver is called by the OTS during initialization to register its Receiver callback interface with the ORB. identify_receiver may throw a AlreadyIdentified exception if the registration has already been done previously.