Class Overview
Wraps an event for transmission to other nodes in the cluster.
The
EventInvocable is responsible
for actually putting this event on the com.atlassian.event.EventManager queue on
the remote nodes.
Summary
|
[Expand]
Inherited Fields |
From class
java.util.EventObject
|
| Public Constructors |
|
|
ClusterEventWrapper(Object src, Event event)
Create a clustered wrapper event to broadcast an event across a cluster.
|
|
[Expand]
Inherited Methods |
From class
com.atlassian.event.Event
|
boolean
|
equals(Object arg0)
|
|
int
|
hashCode()
|
|
From class
org.springframework.context.ApplicationEvent
|
final
long
|
getTimestamp()
|
|
From class
java.util.EventObject
|
From class
java.lang.Object
|
Object
|
clone()
|
|
boolean
|
equals(Object arg0)
|
|
void
|
finalize()
|
|
final
Class<?>
|
getClass()
|
|
int
|
hashCode()
|
|
final
void
|
notify()
|
|
final
void
|
notifyAll()
|
|
String
|
toString()
|
|
final
void
|
wait()
|
|
final
void
|
wait(long arg0, int arg1)
|
|
final
void
|
wait(long arg0)
|
|
Public Constructors
public
ClusterEventWrapper
(Object src, Event event)
Create a clustered wrapper event to broadcast an event across a cluster.
Parameters
| src
| an Object which represents where the event came from. In the case of clustered events,
the recommended src value is a ClusterNodeInformation object. |
| event
| an event to be wrapped
|
Public Methods