Interface ProcessEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface ProcessEnablerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedProcessEnablers(Id notificationId, IdList processEnablerIds)
    The callback for notification of updated process enablers.
    void
    deletedProcessEnablers(Id notificationId, IdList processEnablerIds)
    The callback for notification of deleted process enablers.
    void
    newProcessEnablers(Id notificationId, IdList processEnablerIds)
    The callback for notifications of new process 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

    • newProcessEnablers

      void newProcessEnablers(Id notificationId, IdList processEnablerIds)
      The callback for notifications of new process enablers.
      Parameters:
      notificationId - the notification Id
      processEnablerIds - the Ids of the new ProcessEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedProcessEnablers

      void changedProcessEnablers(Id notificationId, IdList processEnablerIds)
      The callback for notification of updated process enablers.
      Parameters:
      notificationId - the notification Id
      processEnablerIds - the Ids of the updated ProcessEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedProcessEnablers

      void deletedProcessEnablers(Id notificationId, IdList processEnablerIds)
      The callback for notification of deleted process enablers.
      Parameters:
      notificationId - the notification Id
      processEnablerIds - the Ids of the deleted ProcessEnablers
      Compliance:
      mandatory - This method must be implemented.