IBusinessObjectPostProcessBatch Method | |
Business rules hook that fires after the ProcessBatch event.
Namespace:
PSI.Sox.Interfaces
Assembly:
PSI.Sox (in PSI.Sox.dll) Version: 2.1
Syntax void PostProcessBatch(
BatchRequest batchRequest,
ProcessBatchActions batchActions,
ProcessBatchResult processBatchResult,
SerializableDictionary userParams
)
void PostProcessBatch(
BatchRequest^ batchRequest,
ProcessBatchActions batchActions,
ProcessBatchResult^ processBatchResult,
SerializableDictionary^ userParams
)
function PostProcessBatch(batchRequest, batchActions, processBatchResult, userParams);
Parameters
- batchRequest
- Type: PSI.SoxBatchRequest
ProcessBatchRequest object containing the information for the batch that was processed. - batchActions
- Type: PSI.SoxProcessBatchActions
Batch Actions - processBatchResult
- Type: PSI.SoxProcessBatchResult
ProcessBatchResponse object containing the response from the ProcessBatch operation. - userParams
- Type: PSI.SoxSerializableDictionary
SerializableDictionary object that can be used to pass in key/value pairs for custom use.
See Also