Plumtree PEIs  
 

IObjectActions.OnAfterCreateABOJob Method 

This function will perform some functionality after an ABO Job is created to delete an Object.

More info on ABO Jobs and when this PEI is called:
When the user deletes an Admin Folder (including Community folders), since this action might require a lot of processing time, he will have the choice between deleting the folder now or scheduling an ABO Job to do it later and minimize the impact on the Portal's performance. If he decides to do it now, the OnDeleteAdminFolder PEI is called, if he decides to have it done later by a Job, the OnBeforeCreateABOJob and OnAfterCreateABOJob PEIs are called.

void OnAfterCreateABOJob(
   AActivitySpace _asCurrentSpace,
   IPTSession _ptUserSession,
   int _nJobID,
   int _nClassID,
   int _nObjectID
);

Parameters

_asCurrentSpace
- Provides access to the current MVC classes as well as the Application and the HTTP Session
_ptUserSession
- Plumtree session object for the current user
_nJobID
- ID of the ABO Job created
_nClassID
- Class ID of the Object that the Job will delete
_nObjectID
- ID of the Object that the Job will delete

See Also

IObjectActions Interface | com.plumtree.portalpages.pei Namespace