1 package org.oddjob.state; 2 3 4 5 /** 6 * Implementors of this interface are able to listen to state events. 7 * 8 * @author Rob Gordon 9 */ 10 11 public interface JobStateListener { 12 13 14 /** 15 * Triggered when the job state changes. 16 * 17 * @param event The job state event. 18 */ 19 public void jobStateChange(JobStateEvent event); 20 21 } 22