Skip to content

Commit

Permalink
Update TransactionIsolation.md
Browse files Browse the repository at this point in the history
  • Loading branch information
npgall authored Jan 3, 2017
1 parent ca64cf7 commit c503a28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion documentation/TransactionIsolation.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ A transaction is composed of a set of objects to be added to the collection, and
Reading threads are guaranteed to see a consistent version of the collection where transactions have been applied in their entirety. Reads are lock-free, however writes are serialized. When using this feature it is also necessary to call close() on ResultSets.

Example usage (source code [here](../code/src/test/java/com/googlecode/cqengine/examples/transactions/TransactionalIndexedCollectionDemo.java)):
```
```java
// Create example Car objects...
Car car1 = CarFactory.createCar(1); // "Ford Fusion"
Car car2 = CarFactory.createCar(2); // "Ford Taurus"
Expand Down

0 comments on commit c503a28

Please sign in to comment.