org.ocap.system
Interface EASListener

All Superinterfaces:
java.util.EventListener

public interface EASListener
extends java.util.EventListener

This interface represents a listener that will receive EAS events.


Method Summary
 void notify(EASEvent event)
          Notifies an application that an EAS message has started, is in-progress, or has completed.
 void warn(EASEvent event)
          Warns an application that an EAS message has been received and parsed and resources will soon be allocated to it.
 

Method Detail

warn

void warn(EASEvent event)
Warns an application that an EAS message has been received and parsed and resources will soon be allocated to it. The application can get the reason for the event from the event parameter.

Parameters:
event - EAS event received.

notify

void notify(EASEvent event)
Notifies an application that an EAS message has started, is in-progress, or has completed. The application can get the reason for the event from the event parameter.

Parameters:
event - EAS event received.