Class WorkAdapter

java.lang.Object
jakarta.resource.spi.work.WorkAdapter
All Implemented Interfaces:
WorkListener, EventListener

public class WorkAdapter extends Object implements WorkListener
This class is provided as a convenience for easily creating WorkListener instances by extending this class and overriding only those methods of interest.
Version:
1.0
Author:
Ram Jeyaraman
  • Constructor Details

    • WorkAdapter

      public WorkAdapter()
  • Method Details

    • workAccepted

      public void workAccepted(WorkEvent e)
      Invoked when a Work instance has been accepted.
      Specified by:
      workAccepted in interface WorkListener
      Parameters:
      e - A WorkEvent object that provides more information about the accepted Work.
    • workRejected

      public void workRejected(WorkEvent e)
      Invoked when a Work instance has been rejected.
      Specified by:
      workRejected in interface WorkListener
      Parameters:
      e - A WorkEvent object that provides more information about the rejected Work.
    • workStarted

      public void workStarted(WorkEvent e)
      Invoked when a Work instance has started execution. This only means that a thread has been allocated.
      Specified by:
      workStarted in interface WorkListener
      Parameters:
      e - A WorkEvent object that provides more information about the rejected Work.
    • workCompleted

      public void workCompleted(WorkEvent e)
      Invoked when a Work instance has completed execution.
      Specified by:
      workCompleted in interface WorkListener
      Parameters:
      e - A WorkEvent object that provides more information about the completed Work.