gnu.hylafax.job
Interface SendNotifier

All Known Implementing Classes:
BasicSendNotifier

public interface SendNotifier

This interface defines what a class should implement in order to notify others of job related events.

Version:
$Id: SendNotifier.java,v 1.2 2005/06/02 03:37:23 sjardine Exp $
Author:
$Author: sjardine $
See Also:
SendListener, SendEvent

Method Summary
 void addSendListener(SendListener l)
          This method is called to register a Job SendListener.
 void notifySendListeners(SendEvent details)
          This method is called when Job state changes.
 void removeSendListener(SendListener l)
          This method is used to deregister a Job SendListener.
 

Method Detail

notifySendListeners

public void notifySendListeners(SendEvent details)
This method is called when Job state changes.

addSendListener

public void addSendListener(SendListener l)
This method is called to register a Job SendListener.

removeSendListener

public void removeSendListener(SendListener l)
This method is used to deregister a Job SendListener.