public interface ICruxIngestAPI extends Closeable
| Modifier and Type | Method and Description |
|---|---|
ICursor<Map<Keyword,?>> |
openTxLog(Long afterTxId,
boolean withOps)
Reads the transaction log.
|
Map<Keyword,?> |
submitTx(List<List<?>> transaction)
Deprecated.
in favour of
submitTx(Transaction) |
TransactionInstant |
submitTx(Transaction transaction)
Writes transactions to the log for processing.
|
TransactionInstant submitTx(Transaction transaction)
transaction - the transaction to be processed.@Deprecated Map<Keyword,?> submitTx(List<List<?>> transaction)
submitTx(Transaction)transaction - the transaction to be processed.ICursor<Map<Keyword,?>> openTxLog(Long afterTxId, boolean withOps)
afterTxId - optional transaction id to start after.withOps - should the operations with documents be included?