public class SyncMap extends Object implements Map
Reader operations are
SyncCollection
Modifier and Type | Field and Description |
---|---|
protected Map |
c_ |
protected Sync |
rd_ |
protected long |
syncFailures_ |
protected Sync |
wr_ |
Constructor and Description |
---|
SyncMap(Map map,
ReadWriteLock rwl)
Create a new SyncMap protecting the given map,
and using the given ReadWriteLock to control reader and writer methods.
|
SyncMap(Map map,
Sync sync)
Create a new SyncMap protecting the given map,
and using the given sync to control both reader and writer methods.
|
SyncMap(Map map,
Sync readLock,
Sync writeLock)
Create a new SyncMap protecting the given map,
and using the given pair of locks to control reader and writer methods.
|
Modifier and Type | Method and Description |
---|---|
protected void |
afterRead(boolean wasInterrupted)
Clean up after a reader operation
|
protected boolean |
beforeRead()
Try to acquire sync before a reader operation; record failure
|
void |
clear() |
boolean |
containsKey(Object o) |
boolean |
containsValue(Object o) |
Set |
entrySet() |
boolean |
equals(Object o) |
Object |
get(Object key) |
int |
hashCode() |
boolean |
isEmpty() |
Set |
keySet() |
Object |
put(Object key,
Object value) |
void |
putAll(Map coll) |
Sync |
readerSync()
Return the Sync object managing read-only operations
|
Object |
remove(Object key) |
int |
size() |
long |
syncFailures()
Return the number of synchronization failures for read-only operations
|
Collection |
values() |
Sync |
writerSync()
Return the Sync object managing mutative operations
|
protected final Map c_
protected final Sync rd_
protected final Sync wr_
protected long syncFailures_
public SyncMap(Map map, Sync sync)
public SyncMap(Map map, ReadWriteLock rwl)
public Sync readerSync()
public Sync writerSync()
public long syncFailures()
protected boolean beforeRead()
protected void afterRead(boolean wasInterrupted)
public int hashCode()
public boolean equals(Object o)
public boolean containsKey(Object o)
containsKey
in interface Map
public boolean containsValue(Object o)
containsValue
in interface Map
public Collection values()
Copyright © 2012-2013 Adele Team | LIG. All Rights Reserved.