Package org.opentcs.drivers.peripherals
Interface PeripheralJobCallback
public interface PeripheralJobCallback
A callback used to inform about the successful or failed completion of jobs.
-
Method Summary
Modifier and Type Method Description voidperipheralJobFailed(PeripheralJob job)Called on failed completion of a job.voidperipheralJobFinished(PeripheralJob job)Called on successful completion of a job.
-
Method Details
-
peripheralJobFinished
Called on successful completion of a job.- Parameters:
job- The job that was successfully completed.
-
peripheralJobFailed
Called on failed completion of a job.- Parameters:
job- The job whose completion has failed.
-