com.ibm.websphere.asynchbeans

Interface SubsystemMonitorEvents

All Superinterfaces:
EventSourceEvents

  1. public interface SubsystemMonitorEvents
  2. extends EventSourceEvents
These are the events which can be fired by a SubsystemMonitor. Applications interested in getting these events should implement this interface and the add the object implementing it to the SubsystemMonitor.
See Also:
SubsystemMonitor

Method Summary

Modifier and Type Method and Description
  1. void
destroyed(SubsystemMonitor ssm)
The subsystem is it-self being destroyed.
  1. void
subsystemIsDead(SubsystemMonitor ssm)
The subsystem is now dead.
  1. void
subsystemIsFresh(SubsystemMonitor ssm)
The subsystem is now fresh.
  1. void
subsystemIsStale(SubsystemMonitor ssm)
The subsystem is now stale.
Methods inherited from interface com.ibm.websphere.asynchbeans.EventSourceEvents
listenerCountChanged, listenerExceptionThrown, unexpectedException

Method Detail

subsystemIsFresh

  1. void subsystemIsFresh(SubsystemMonitor ssm)
The subsystem is now fresh. This means operating normally.
Parameters:
ssm - The subsystem monitor which generated this event.

subsystemIsStale

  1. void subsystemIsStale(SubsystemMonitor ssm)
The subsystem is now stale. This means the subsystem is late generating heart beats.
Parameters:
ssm - The subsystem monitor which generated this event.

subsystemIsDead

  1. void subsystemIsDead(SubsystemMonitor ssm)
The subsystem is now dead. This means the subsystem is not available according to the heart beat mechanism.
Parameters:
ssm - The subsystem monitor which generated this event.

destroyed

  1. void destroyed(SubsystemMonitor ssm)
The subsystem is it-self being destroyed. This doesn't mean the subsystem is being destroyed, it simply means we are not going to monitor it anymore.
Parameters:
ssm - The subsystem monitor which generated this event.