com.ibm.eNetwork.ECL.event
Interface ECLPrintJobListener

All Superinterfaces:
java.util.EventListener

public interface ECLPrintJobListener
extends java.util.EventListener

The ECLPrintJobListener interface can be used to implement an object which will receive ECLPrintJobEvents. Events are generated whenever a printer job is started or completed. Special events are generated when print job related errors occur.

See Also:
ECLHostPrintSession.addPrintJobListener(com.ibm.eNetwork.ECL.event.ECLPrintJobListener), ECLPrintJobEvent

Method Summary
 boolean ECLPrintJobNotification(ECLPrintJobEvent event)
          This is the constructor used to create an ECLPrintJobEvent object.
 

Method Detail

ECLPrintJobNotification

public boolean ECLPrintJobNotification(ECLPrintJobEvent event)
This is the constructor used to create an ECLPrintJobEvent object.
Parameters:
event - Event being distributed to all listeners.
Returns:
A boolean value that identifies whether or not the event has been consumed. true - The event has been consumed, no other listeners will receive the event. false - The event has not been consumed.
See Also:
ECLPrintJobEvent