Sets the best effort flag for this transaction. The Best effort flag can only be set for read-only transactions, and setting the best effort flag will enable a read-only transaction to see mutations made by other transactions even if those mutations have not been committed. @param bestEffort the bo
(boolean bestEffort)
| 232 | * or not |
| 233 | */ |
| 234 | public void setBestEffort(boolean bestEffort) { |
| 235 | asyncTransaction.setBestEffort(bestEffort); |
| 236 | } |
| 237 | |
| 238 | @Override |
| 239 | public void close() { |