Methods Summary |
---|
public static void | addEvent(AdminEvent event)Adds an event to the stack. The newly added event will be
sent to the target destination.
EventStack stack = getEventStackFromThreadLocal();
stack.addEvent(event);
|
public static java.util.ArrayList | getConfigChangeList()Returns the config changes from config.
EventStack stack = getEventStackFromThreadLocal();
return stack.getConfigContext().getConfigChangeList();
|
public static EventStack | getEventStackFromThreadLocal()Returns the event stack from thread local.
return (EventStack) _threadLocal.get();
|
public static void | setEventStackToThreadLocal(EventStack stack)Sets the event stack to thread local.
_threadLocal.set(stack);
|