public interface ProcedureReceiver extends OsidReceiver
The procedure receiver is the consumer supplied interface for receiving notifications pertaining to new or deleted procedures.
| Modifier and Type | Method and Description |
|---|---|
void |
changedProcedures(IdList procedureIds)
The callback for notifications of updated procedures.
|
void |
deletedProcedures(IdList procedureIds)
the callback for notification of deleted procedures.
|
void |
newProcedures(IdList procedureIds)
The callback for notifications of new procedures.
|
down, upvoid newProcedures(IdList procedureIds)
procedureIds - the Ids of the new proceduresmandatory - This method must be implemented. void changedProcedures(IdList procedureIds)
procedureIds - the Ids of the updated proceduresmandatory - This method must be implemented. void deletedProcedures(IdList procedureIds)
procedureIds - the Ids of the deleted proceduresmandatory - This method must be implemented.