-
public class PluginContext.Companion
-
-
Field Summary
Fields Modifier and Type Field Description private final IntegerHIGH_PRIORITYprivate final IntegerNORM_PRIORITYprivate final IntegerLOW_PRIORITYpublic final static PluginContext.CompanionINSTANCE
-
Method Summary
Modifier and Type Method Description final IntegergetHIGH_PRIORITY()A priority value for actions that should be called before NORM_PRIORITY actions. final IntegergetNORM_PRIORITY()The "normal" priority value for actions that should be called in the order they are added. final IntegergetLOW_PRIORITY()A priority value for actions that should be called after NORM_PRIORITY actions. -
-
Method Detail
-
getHIGH_PRIORITY
final Integer getHIGH_PRIORITY()
A priority value for actions that should be called before NORM_PRIORITY actions.
-
getNORM_PRIORITY
final Integer getNORM_PRIORITY()
The "normal" priority value for actions that should be called in the order they are added. This is the priority of items added in PerformanceConfiguration. Anything with priority lower than this will be called before these, and priority values higher than
-
getLOW_PRIORITY
final Integer getLOW_PRIORITY()
A priority value for actions that should be called after NORM_PRIORITY actions.
-
-
-
-