Re: ReadWriteLock rather on map's each field than whole map?



Lew wrote:
class Foo
{
private boolean updated;
public void update(){...; updated = true; }
public
boolean
isUpdated() { return updated; }
}
.