public enum HandlerPriority extends Enum<HandlerPriority>
alias() method exposes the effective priority used by the scheduler
where an enum constant is an alias for another priority.| Enum Constant and Description |
|---|
BLOCKING
Tasks involving blocking operations executed on a cached thread pool.
|
CONCURRENT
Tasks that can be performed concurrently and may block for some time.
|
DAEMON
Tasks run only when there is nothing else to do.
|
HIGH
Critical tasks executed in a tight loop.
|
MEDIUM
Tasks run about one quarter as often as
HIGH. |
MONITOR
Background monitoring tasks.
|
REPLICATION
Replication events processed on their own thread.
|
REPLICATION_TIMER
Timing based replication tasks.
|
TIMER
Timing-based tasks executed at regular intervals.
|
| Modifier and Type | Method and Description |
|---|---|
HandlerPriority |
alias()
Returns the effective priority used by the scheduler.
|
static HandlerPriority |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HandlerPriority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HandlerPriority HIGH
public static final HandlerPriority MEDIUM
public static final HandlerPriority TIMER
public static final HandlerPriority DAEMON
public static final HandlerPriority MONITOR
public static final HandlerPriority BLOCKING
public static final HandlerPriority REPLICATION
public static final HandlerPriority REPLICATION_TIMER
public static final HandlerPriority CONCURRENT
public static HandlerPriority[] values()
for (HandlerPriority c : HandlerPriority.values()) System.out.println(c);
public static HandlerPriority valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic HandlerPriority alias()
REPLICATION are aliases for other priorities.Copyright © 2026 Chronicle Software Ltd. All rights reserved.