TaskProcessorBaseTSettingsUpdateFailedJobInTaskQueue Method (TaskProcessorJob, String, Exception, String, Boolean) |
Updates the task in the application task queue, with failed info.
Namespace:
MFiles.VAF.MultiserverMode
Assembly:
MFiles.VAF (in MFiles.VAF.dll) Version: 2.3.623.2
Syntaxpublic void UpdateFailedJobInTaskQueue(
TaskProcessorJob job,
string processingTargetIdentifiers,
Exception ex,
string remarks = null,
bool appendRemarks = true
)
Public Sub UpdateFailedJobInTaskQueue (
job As TaskProcessorJob,
processingTargetIdentifiers As String,
ex As Exception,
Optional remarks As String = Nothing,
Optional appendRemarks As Boolean = true
)
public:
void UpdateFailedJobInTaskQueue(
TaskProcessorJob^ job,
String^ processingTargetIdentifiers,
Exception^ ex,
String^ remarks = nullptr,
bool appendRemarks = true
)
Parameters
- job
- Type: MFiles.VAF.MultiserverModeTaskProcessorJob
TaskProcessorJob that failed. - processingTargetIdentifiers
- Type: SystemString
Identifiers for the objects that are the target of processing.
- ex
- Type: SystemException
Failure Exception - remarks (Optional)
- Type: SystemString
Custom remarks (default is used if not provided). - appendRemarks (Optional)
- Type: SystemBoolean
- When true appends the remarks to the pre-existing value.
- Replaces when false.
See Also