public class SystemEventManager
extends java.lang.Object
These events are not the standard tightly-coupled style of java.util.EventObject, but instead a looser, bus-style method. Events are injected into the manager, which then distributes them to each module. It is up to the modules to do anything about the event, generally by running a set of scripts.
You don't generally need to instantiate this class, instead grab the one returned by SystemServices.eventManager().
Copyright 2007 Partner Software, Inc.
| Constructor and Description |
|---|
SystemEventManager() |
| Modifier and Type | Method and Description |
|---|---|
void |
fireEvent(java.lang.String sourceModule,
java.lang.String event)
Fires an event with the given source module and event name, with no parameters.
|
void |
fireEvent(java.lang.String sourceModule,
java.lang.String event,
Naming<java.lang.Object> variables)
Fires an event with the given source module, event name, and variable
parameters.
|
void |
fireEvent(java.lang.String sourceModule,
java.lang.String event,
java.lang.Object... variables)
Fires an event with the given source module, event name, and variable
parameters.
|
public void fireEvent(java.lang.String sourceModule,
java.lang.String event)
public void fireEvent(java.lang.String sourceModule,
java.lang.String event,
Naming<java.lang.Object> variables)
public void fireEvent(java.lang.String sourceModule,
java.lang.String event,
java.lang.Object... variables)