com.bagri.server.hazelcast.task.doc.DocumentsRemover Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bagri-server-hazelcast Show documentation
Show all versions of bagri-server-hazelcast Show documentation
Bagri DB Cache: Hazelcast implementation
The newest version!
package com.bagri.server.hazelcast.task.doc;
import java.util.concurrent.Callable;
import org.springframework.beans.factory.annotation.Autowired;
import com.bagri.core.api.DocumentManagement;
import com.bagri.core.api.ResultCursor;
import com.bagri.core.api.TransactionIsolation;
import com.bagri.core.api.SchemaRepository;
import com.bagri.core.server.api.TransactionManagement;
import com.bagri.core.system.Permission;
import com.bagri.server.hazelcast.impl.SchemaRepositoryImpl;
import com.hazelcast.spring.context.SpringAware;
@SpringAware
public class DocumentsRemover extends com.bagri.client.hazelcast.task.doc.DocumentsRemover {
private transient DocumentManagement docMgr;
private transient TransactionManagement txMgr;
@Autowired
@Override
public void setRepository(SchemaRepository repo) {
super.setRepository(repo);
this.docMgr = repo.getDocumentManagement();
this.txMgr = (TransactionManagement) repo.getTxManagement();
}
@Override
public ResultCursor call() throws Exception {
checkPermission(Permission.Value.modify);
TransactionIsolation tiLevel = ((SchemaRepositoryImpl) repo).getTransactionLevel(context);
if (tiLevel == null) {
return docMgr.removeDocuments(pattern, context);
}
return txMgr.callInTransaction(txId, false, tiLevel, new Callable() {
public ResultCursor call() throws Exception {
return docMgr.removeDocuments(pattern, context);
}
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy