All Downloads are FREE. Search and download functionalities are using the official Maven repository.

bitronix.tm.twopc.executor.Job Maven / Gradle / Ivy

There is a newer version: 2.1.4
Show newest version
package bitronix.tm.twopc.executor;

import bitronix.tm.TransactionManagerServices;
import bitronix.tm.internal.XAResourceHolderState;

import javax.transaction.xa.XAException;

/**
 * Abstract job definition executable by the 2PC thread pools.
 * 

© Bitronix Software

* * @author lorban */ public abstract class Job implements Runnable { private Object future; private XAResourceHolderState resourceHolder; protected XAException xaException; protected RuntimeException runtimeException; public Job(XAResourceHolderState resourceHolder) { this.resourceHolder = resourceHolder; } public XAResourceHolderState getResource() { return resourceHolder; } public XAException getXAException() { return xaException; } public RuntimeException getRuntimeException() { return runtimeException; } public void setFuture(Object future) { this.future = future; } public Object getFuture() { return future; } public final void run() { if (TransactionManagerServices.getConfiguration().isAsynchronous2Pc()) { Thread.currentThread().setName("bitronix-2pc [ " + resourceHolder.getXid().toString() + " ]"); } execute(); } protected abstract void execute(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy