Does a curator transaction isolate me from changes in the underlying data? E.g. if I do
CuratorTransaction transaction = curator.inTransaction(); curator.getChildren().forPath(entityPath); curator.getData()... etc. will forPath() and getData() operate on the same underlying data irrespective of concurrent modifications elsewhere? If not, can I achieve a consistent read of all the data in a path by some other means? Thanks Neil
