org.tentackle.dbms.rmi.DbRemoteDelegate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tentackle-database Show documentation
Show all versions of tentackle-database Show documentation
Tentackle Low-Level DBMS Layer
/*
* Tentackle - https://tentackle.org
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package org.tentackle.dbms.rmi;
import org.tentackle.dbms.CommitTxRunnable;
import org.tentackle.dbms.DbTransactionHandle;
import org.tentackle.dbms.ModificationLog;
import org.tentackle.dbms.PersistenceVisitor;
import org.tentackle.dbms.RollbackTxRunnable;
import org.tentackle.session.SavepointHandle;
import org.tentackle.session.TransactionIsolation;
import org.tentackle.session.TransactionWritability;
import java.io.Serializable;
import java.rmi.RemoteException;
import java.util.Collection;
import java.util.List;
/**
* Remote delegate interface for {@link org.tentackle.dbms.Db}.
*
* @author harald
*/
public interface DbRemoteDelegate extends RemoteDelegate {
int getSessionId() throws RemoteException;
void groupWith(int sessionGroupId) throws RemoteException;
boolean isAlive() throws RemoteException;
void setAlive(boolean alive) throws RemoteException;
long begin(String txName, TransactionIsolation transactionIsolation, TransactionWritability transactionWritability) throws RemoteException;
boolean commit(long txVoucher) throws RemoteException;
boolean rollback(long txVoucher, boolean withLog) throws RemoteException;
SavepointHandle setSavepoint() throws RemoteException;
SavepointHandle setSavepoint(String name) throws RemoteException;
void rollback(SavepointHandle handle) throws RemoteException;
void releaseSavepoint(SavepointHandle handle) throws RemoteException;
void setReadOnly(boolean flag) throws RemoteException;
void setCountModificationAllowed(boolean flag) throws RemoteException;
void setLogModificationAllowed(boolean flag) throws RemoteException;
void setLogModificationTxEnabled(boolean flag) throws RemoteException;
void setLogModificationTxId(long txId) throws RemoteException;
long getLogModificationTxId() throws RemoteException;
boolean setLogModificationDeferred(boolean flag) throws RemoteException;
List popModificationLogsOfTransaction() throws RemoteException;
DbTransactionHandle registerCommitTxRunnable(CommitTxRunnable runnable) throws RemoteException;
CommitTxRunnable unregisterCommitTxRunnable(DbTransactionHandle handle) throws RemoteException;
Collection getCommitTxRunnables() throws RemoteException;
DbTransactionHandle registerRollbackTxRunnable(RollbackTxRunnable runnable) throws RemoteException;
RollbackTxRunnable unregisterRollbackTxRunnable(DbTransactionHandle handle) throws RemoteException;
Collection getRollbackTxRunnables() throws RemoteException;
DbTransactionHandle registerPersistenceVisitor(PersistenceVisitor visitor) throws RemoteException;
PersistenceVisitor unregisterPersistenceVisitor(DbTransactionHandle handle) throws RemoteException;
Collection getPersistenceVisitors() throws RemoteException;
T setProperty(String key, T value) throws RemoteException;
T getProperty(String key) throws RemoteException;
}