//at the moment, only support for transactional and nontransactional strategy
if (strategy != NON_TRANSACTIONAL) {
//get the pmf
POManagerFactoryItf pmf = sequenceManager.getPMF();
//get the pm
POManagerItf pm = pmf.lookup();
//check that a transaction is active
return (pm != null && pm.getSpeedoTransaction().isActive());
}
return true;
}