Interface JobConstrainerEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface JobConstrainerEnablerReceiver extends OsidReceiver

The job constrainer enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted job constrainer enablers.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedJobConstrainerEnablers(Id notificationId, IdList jobConstrainerEnablerIds)
    The callback for notification of updated job constrainer enablers.
    void
    deletedJobConstrainerEnablers(Id notificationId, IdList jobConstrainerEnablerIds)
    The callback for notification of deleted job constrainer enablers.
    void
    newJobConstrainerEnablers(Id notificationId, IdList jobConstrainerEnablerIds)
    The callback for notifications of new job constrainer enablers.

    Methods inherited from interface OsidReceiver

    down, up
    Modifier and Type
    Method
    Description
    void
    The callback for notifications that the notification bus is not operating.
    void
    up()
    The callback for notifications that the notification bus is operational.
  • Method Details

    • newJobConstrainerEnablers

      void newJobConstrainerEnablers(Id notificationId, IdList jobConstrainerEnablerIds)
      The callback for notifications of new job constrainer enablers.
      Parameters:
      notificationId - the notification Id
      jobConstrainerEnablerIds - the Ids of the new JobConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedJobConstrainerEnablers

      void changedJobConstrainerEnablers(Id notificationId, IdList jobConstrainerEnablerIds)
      The callback for notification of updated job constrainer enablers.
      Parameters:
      notificationId - the notification Id
      jobConstrainerEnablerIds - the Ids of the updated JobConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedJobConstrainerEnablers

      void deletedJobConstrainerEnablers(Id notificationId, IdList jobConstrainerEnablerIds)
      The callback for notification of deleted job constrainer enablers.
      Parameters:
      notificationId - the notification Id
      jobConstrainerEnablerIds - the Ids of the deleted JobConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.