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.test |
Testing tools for validation and performance.
|
javolution.util |
High-performance collection classes with
worst case execution time behavior documented. |
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() - 1 ). |
static Configurable<LogContext.Level> |
LogContext.LEVEL
Holds the default logging level (
DEBUG ). |
Modifier and Type | Field and Description |
---|---|
static Configurable<Boolean> |
Initializer.SHOW_INITIALIZED
Indicates if the class being initialized should be logged
(default
false ). |
Modifier and Type | Field and Description |
---|---|
static SecurityContext.Permission<Configurable<?>> |
Configurable.RECONFIGURE_PERMISSION
Holds the general permission to reconfigure configurable instances
(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.configurableInitialized(Configurable<T> configurable,
T value)
Receives notification that a configurable has been initialized..
|
<T> void |
Configurable.Listener.configurableReconfigured(Configurable<T> configurable,
T oldValue,
T newValue)
Receives notification that a configurable has been updated.
|
Modifier and Type | Field and Description |
---|---|
static Configurable<Integer> |
Perfometer.DURATION_MS
Hold the measurement duration in milliseconds (default 1000 ms).
|
static Configurable<Boolean> |
Perfometer.SKIP
Indicates if perfometer measurements should be skipped (
e.g.
|
Modifier and Type | Field and Description |
---|---|
static Configurable<Integer> |
Index.UNIQUE
Holds the number of unique preallocated instances (default
1024 ). |
Copyright © 2005-2013 Javolution. All Rights Reserved.