javax.transaction.Synchronization翻译

<!-- ========= START OF TOP NAVBAR ======= --> <!-- -->
JavaTM 2 Platform
Ent. Ed. v1.4
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->

javax.transaction
Interface Synchronization


public interface Synchronization

The transaction manager supports a synchronization mechanism that allows the interested party to be notified before and after the transaction completes. Using the registerSynchronization method, the application server registers a Synchronization object for the transaction currently associated with the target Transaction object. 事务管理器支持同步机制以允许在事务完成以后通知感兴趣者。 使用registerSynchronization方法,应用服务器为当前同目标Transaction对象关联事务注册一个Synchronization对象。


<!-- ======== NESTED CLASS SUMMARY ======== --><!-- =========== FIELD SUMMARY =========== --><!-- ======== CONSTRUCTOR SUMMARY ======== --><!-- ========== METHOD SUMMARY =========== --><!-- -->

Method Summary
void afterCompletion(intstatus)
This method is called by the transaction manager after the transaction is committed or rolled back. 该方法由事务管理器在事务提交或回滚后调用。
void beforeCompletion()
The beforeCompletion method is called by the transaction manager prior to the start of the two-phase transaction commit process. beforeCompletion方法由事务管理器在开始两步事务提交过程前调用。

<!-- ============ FIELD DETAIL =========== --><!-- ========= CONSTRUCTOR DETAIL ======== --><!-- ============ METHOD DETAIL ========== --><!-- -->

Method Detail
<!-- -->

beforeCompletion

public void beforeCompletion()
The beforeCompletion method is called by the transaction manager prior to the start of the two-phase transaction commit process. This call is executed with the transaction context of the transaction that is being committed. beforeCompletion方法由事务管理器在开始两步事务提交过程前调用。执行调用 需要正提交事务的事务上下文。


<!-- -->

afterCompletion

public void afterCompletion(intstatus)
This method is called by the transaction manager after the transaction is committed or rolled back. 该方法由事务管理器在事务提交或回滚后调用。

Parameters:
status - The status of the transaction completion. 事务完成状态。
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== --> <!-- -->
JavaTM 2 Platform
Ent. Ed. v1.4
<!-- ======== END OF BOTTOM NAVBAR ======= -->
Submit a bug or feature

Copyright 2003 Sun Microsystems, Inc. All rights reserved.

你可能感兴趣的:(html,应用服务器,sun)