|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Striped | |
---|---|
com.google.common.util.concurrent | Concurrency utilities. |
Uses of Striped in com.google.common.util.concurrent |
---|
Methods in com.google.common.util.concurrent that return Striped | |
---|---|
static Striped<Lock> |
Striped.lazyWeakLock(int stripes)
Creates a Striped<Lock> with lazily initialized, weakly referenced locks, with the
specified fairness. |
static Striped<ReadWriteLock> |
Striped.lazyWeakReadWriteLock(int stripes)
Creates a Striped<ReadWriteLock> with lazily initialized, weakly referenced
read-write locks, with the specified fairness. |
static Striped<Semaphore> |
Striped.lazyWeakSemaphore(int stripes,
int permits)
Creates a Striped<Semaphore> with lazily initialized, weakly referenced semaphores,
with the specified number of permits and fairness. |
static Striped<Lock> |
Striped.lock(int stripes)
Creates a Striped<Lock> with eagerly initialized, strongly referenced locks, with the
specified fairness. |
static Striped<ReadWriteLock> |
Striped.readWriteLock(int stripes)
Creates a Striped<ReadWriteLock> with eagerly initialized, strongly referenced
read-write locks, with the specified fairness. |
static Striped<Semaphore> |
Striped.semaphore(int stripes,
int permits)
Creates a Striped<Semaphore> with eagerly initialized, strongly referenced semaphores,
with the specified number of permits and fairness. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |