OSID Logo
OSID Specifications
workflow package
Version 3.1.0
Interfaceosid.workflow.StepReceiver
Implementsosid.OsidReceiver
Description

The step receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted Step objects.

Like all OsidReceivers, notifications are delivered to StepReceiver serially and a receiver method is not invoked again until any previous invocation has returned.

MethodnewSteps
Description

The callback for notifications of new steps.

Parametersosid.id.IdnotificationId the notification Id
osid.id.IdListstepIds the Ids of the new Steps
Compliancemandatory This method must be implemented.
MethodchangedSteps
Description

The callback for notification of updated steps.

Parametersosid.id.IdnotificationId the notification Id
osid.id.IdListstepIds the Ids of the updated Steps
Compliancemandatory This method must be implemented.
MethoddeletedSteps
Description

The callback for notification of deleted steps.

Parametersosid.id.IdnotificationId the notification Id
osid.id.IdListstepIds the Ids of the deleted Steps
Compliancemandatory This method must be implemented.