org.datanucleus.store.rdbms.ManagedConnectionWithExecutionContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datanucleus-rdbms Show documentation
Show all versions of datanucleus-rdbms Show documentation
Plugin for DataNucleus providing persistence to RDBMS datastores.
The newest version!
package org.datanucleus.store.rdbms;
import org.datanucleus.ExecutionContext;
import org.datanucleus.store.connection.ManagedConnection;
/**
* Managed connection that knows its execution context.
*/
public interface ManagedConnectionWithExecutionContext extends ManagedConnection
{
/**
* Get execution context of connection
* @return execution context.
*/
ExecutionContext getExecutionContext();
}