Package | Description |
---|---|
javolution.context |
Run-time
contexts to facilitate
separation of concerns and achieve higher level of performance and flexibility. |
javolution.lang |
Fundamental classes, interfaces and annotations.
|
javolution.util |
High-performance collection classes with
guaranteed worst case execution time . |
Modifier and Type | Class and Description |
---|---|
static class |
LocalContext.Parameter<T>
A
configurable parameter whose value can
be locally superseded within the scope of LocalContext . |
Modifier and Type | Field and Description |
---|---|
static Configurable<Integer> |
ConcurrentContext.CONCURRENCY
Holds the maximum concurrency
(default
Runtime.getRuntime().availableProcessors() ). |
static Configurable<LogContext.Level> |
LogContext.LEVEL
Holds the default logging level (
DEBUG ). |
Modifier and Type | Field and Description |
---|---|
static Configurable<Boolean> |
Initializer.DEBUG
Indicates if the class being initialized should be logged as debug
messages (default
false ). |
Modifier and Type | Field and Description |
---|---|
static SecurityContext.Permission<Configurable<?>> |
Configurable.RECONFIGURE_PERMISSION
Holds the general permission to reconfigure configurables values
(action
"reconfigure" ). |
Modifier and Type | Method and Description |
---|---|
SecurityContext.Permission<Configurable<T>> |
Configurable.getReconfigurePermission()
Returns the permission to configure this instance.
|
Modifier and Type | Method and Description |
---|---|
<T> void |
Configurable.Listener.configurableChanged(Configurable<T> configurable,
T oldValue,
T newValue)
Receives notification that a configurable has been updated.
|
Modifier and Type | Field and Description |
---|---|
static Configurable<Integer> |
Index.PREALLOCATED
Holds the number of unique preallocated instances (default
1024 ). |
Copyright © 2005-2013 Javolution. All Rights Reserved.