public class WriteOnlySimpleTransaction
extends BaseCorfuAppUtils
A write-only transaction is a normal transaction that has only object-mutator method invocations,
and does not perform any object-accessor invocations.
In the default (Optimistic) transaction isolation level, since it has no read-set,
a write-only transaction never needs to abort due to another transaction's commit.
The main reason to group mutator updates into a write-transaction is commit *atomicity*:
Either all of mutator updates are visible to an application or none.
This program illustrates the write atomicity concept with a simple transaction example.
Created by dalia on 12/30/16.