Class DeliveryFuncResult
public class DeliveryFuncResult
extends FuncResult
Provides a Fluent submission delivery function result class.
- Since:
- 17.10.0
Field Summary
FieldsModifier and Type | Field | Description |
---|---|---|
java.lang.String |
deliveryChannel |
The delivery channel name to switch to (optional). |
java.lang.Integer |
maxRetryAttempts |
The maximum number of retry attempts. |
java.lang.Integer |
retryIntervalsMins |
The delivery retry interval in minutes. |
java.lang.String |
status |
The delivery function result. |
static java.lang.String |
STATUS_COMPLETED |
The delivery 'Completed' status. |
static java.lang.String |
STATUS_ERROR |
The delivery 'Error' status. |
static java.lang.String |
STATUS_IN_PROGRESS |
The delivery 'In Progress' status. |
Fields inherited from class com.avoka.tm.func.FuncResult
continueProcessing, data
Constructor Summary
ConstructorsConstructor | Description |
---|---|
DeliveryFuncResult() |
Method Summary
Methods inherited from class com.avoka.tm.func.FuncResult
toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait,
wait
Field Detail
STATUS_COMPLETED
public static final java.lang.String STATUS_COMPLETED
The delivery 'Completed' status.
- See Also:
- Constant Field Values
STATUS_ERROR
public static final java.lang.String STATUS_ERROR
The delivery 'Error' status.
- See Also:
- Constant Field Values
STATUS_IN_PROGRESS
public static final java.lang.String STATUS_IN_PROGRESS
The delivery 'In Progress' status.
- See Also:
- Constant Field Values
deliveryChannel
public java.lang.String deliveryChannel
The delivery channel name to switch to (optional).
status
public java.lang.String status
The delivery function result.
maxRetryAttempts
public java.lang.Integer maxRetryAttempts
The maximum number of retry attempts.
retryIntervalsMins
public java.lang.Integer retryIntervalsMins
The delivery retry interval in minutes.
Constructor Detail
DeliveryFuncResult
public DeliveryFuncResult()