Goods.OptimisticMetaobject Class
Metaobject for optimistic scheme of synchronization. Optimistic means we don't lock. Multiple Readers, multiple Writers would be another way of putting it. Another way to say this is of course, "You'd better know what you're doing", and then later, "You've been warned". On the other hand, if you do know that this is no problem, the benefit is that you save the time for the locking (which is a network request in the Pessimistic case)

Access: Public
Base Classes: BasicMetaobject
  Members Description  
    beginWriteAccess beginWriteAccess is a no-op. That's why it's optimistic.

 
    endAccess endAccess adds the object to the cache managers transaction list if the object has been modified.

 
    beginReadAccess beginReadAccess is a no-op. We're being optimistic, remember.