/*
* create fake TransactionParticipant which
* will prevent normal commit completion
*/
TransactionParticipant tp = new ParticipantImpl();
((ServerTransaction) txn).join(tp, System.currentTimeMillis());
// run thread which will prevent normal commit completion
Committer committer = new Committer(tp, (ServerTransaction) txn,
mgr);