KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > objectserver > tx > TransactionalStageCoordinator


1 /*
2  * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.objectserver.tx;
5
6 import com.tc.objectserver.context.ApplyTransactionContext;
7
8 public interface TransactionalStageCoordinator {
9
10   public void addToApplyStage(ApplyTransactionContext context);
11
12   public void initiateLookup();
13
14   public void initiateApplyComplete();
15
16   public void initiateCommit();
17
18   public void initiateRecallAll();
19
20 }
Popular Tags