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

com.atomikos.icatch.imp.TxActiveStateHandler Maven / Gradle / Ivy

/**
 * Copyright (C) 2000-2023 Atomikos 
 *
 * LICENSE CONDITIONS
 *
 * See http://www.atomikos.com/Main/WhichLicenseApplies for details.
 */

package com.atomikos.icatch.imp;

import com.atomikos.recovery.TxState;

/**
 * An active state handler.
 */

class TxActiveStateHandler extends TransactionStateHandler
{

    protected TxActiveStateHandler ( CompositeTransactionImp ct )
    {
        super ( ct );

    }

    protected TxState getState ()
    {

        return TxState.ACTIVE;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy