Useful properties on class BatchProcessBase
The following list describes some of the useful properties on class BatchProcessBase.
Property |
Description |
|---|---|
|
Returns the detailed status for the batch type. Class For Java implementations, you must implement this property getter as the method getDetailStatus, which takes no arguments. |
|
Sets whether another instance of this batch process can start while the current process is still running. The base class implementation of the isExclusive method always returns true. Override the isExclusive method if you need to customize this behavior. This value does not affect whether other batch process classes can run. It only affects the current batch process class. For maximum performance, be sure to set the property value to
For Java implementations, implement this property getter as the method isExclusive, which takes no arguments. |
|
Returns a Boolean value to indicate whether the process completed. Completion says nothing about the errors, if any. For Java implementations, implement this property getter as the isFinished method. |
|
Returns a count of how many operations are complete, as an integer value. For Java implementations, implement this property getter as the getOperationsCompleted method. |
|
Returns a count of how many operations PolicyCenter expects the batch process to perform, as an integer value. For Java implementations, implement this property as the getOperationsExpected method. |
|
Returns an internal count for the number of operations that failed. For Java implementations, implement property getter as the getOperationsFailed method. |
|
Dynamically returns the progress of the batch process. The base class returns text in the form For Java implementations, implement the property getter as the getProgress method. |
|
Returns a Boolean value that is the return value from the requestTermination method. |
|
Returns the type of the current batch process. There is no need to override the default For Java implementations, implement the property getter as the getType method, which takes no arguments. |
