public interface PostOrders
EventSubscriber should be posted events.
Post orders are represented by Integers, and subscribers are
ordered using the natural ordering of Java integers.
Some "standard" post orders are expressed as constants on this class.
| Modifier and Type | Field and Description |
|---|---|
static int |
EARLY
Marks that the subscriber should be called before
normal subscribers. |
static int |
FIRST
Marks that the subscriber should be called first, before all other subscribers.
|
static int |
LAST
Marks that the subscriber should be called last, after all other subscribers.
|
static int |
LATE
Marks that the subscriber should be called after
normal subscribers. |
static int |
NORMAL
Marks that the subscriber should be called with no special priority.
|
static final int FIRST
static final int EARLY
normal subscribers.static final int NORMAL
static final int LATE
normal subscribers.static final int LAST