| Package | Description |
|---|---|
| org.apache.fluo.recipes.core.transaction |
| Modifier and Type | Method and Description |
|---|---|
static LogEntry |
LogEntry.newDelete(org.apache.fluo.api.data.Bytes row,
org.apache.fluo.api.data.Column col) |
static LogEntry |
LogEntry.newDelete(CharSequence row,
org.apache.fluo.api.data.Column col) |
static LogEntry |
LogEntry.newGet(org.apache.fluo.api.data.Bytes row,
org.apache.fluo.api.data.Column col,
org.apache.fluo.api.data.Bytes value) |
static LogEntry |
LogEntry.newGet(CharSequence row,
org.apache.fluo.api.data.Column col,
CharSequence value) |
static LogEntry |
LogEntry.newSet(org.apache.fluo.api.data.Bytes row,
org.apache.fluo.api.data.Column col,
org.apache.fluo.api.data.Bytes value) |
static LogEntry |
LogEntry.newSet(CharSequence row,
org.apache.fluo.api.data.Column col,
CharSequence value) |
| Modifier and Type | Method and Description |
|---|---|
List<LogEntry> |
TxLog.getLogEntries()
Returns all LogEntry in TxLog
|
| Modifier and Type | Method and Description |
|---|---|
void |
TxLog.add(LogEntry entry)
Adds LogEntry to TxLog
|
void |
TxLog.filteredAdd(LogEntry entry,
Predicate<LogEntry> filter)
Adds LogEntry to TxLog if it passes filter
|
| Modifier and Type | Method and Description |
|---|---|
void |
TxLog.filteredAdd(LogEntry entry,
Predicate<LogEntry> filter)
Adds LogEntry to TxLog if it passes filter
|
static RecordingTransactionBase |
RecordingTransactionBase.wrap(org.apache.fluo.api.client.TransactionBase txb,
Predicate<LogEntry> filter)
Creates a RecordingTransactionBase using the provided LogEntry filter function and existing
TransactionBase
|
static RecordingTransaction |
RecordingTransaction.wrap(org.apache.fluo.api.client.Transaction tx,
Predicate<LogEntry> filter)
Creates a RecordingTransaction using the provided LogEntry filter and existing Transaction
|
Copyright © 2016–2018 The Apache Software Foundation. All rights reserved.