Save This Page
Home » jboss-jca-api-sources » javax » resource » spi » [javadoc | source]
javax.resource.spi
public interface: LocalTransaction [javadoc | source] The LocalTransaction interface is for transactions which are managed locally to the underlying resource and don't need an external transaction manager. If a resource implements the LocalTransaction interface then the Application Server can choose to do local transacton optimization.
Method from javax.resource.spi.LocalTransaction Summary:
begin,   commit,   rollback
Method from javax.resource.spi.LocalTransaction Detail:
 public  void begin() throws ResourceException
    Begins a local transaction on the userlying resource.
 public  void commit() throws ResourceException
    Commits a local transaction on the userlying resource.
 public  void rollback() throws ResourceException
    Rolls back a local transaction on the userlying resource.