Package com.avoka.tm.func
Class DeliveryFuncResult
- java.lang.Object
-
- com.avoka.tm.func.FuncResult
-
- com.avoka.tm.func.DeliveryFuncResult
-
public class DeliveryFuncResult extends FuncResult
Provides a Fluent submission delivery function result class.- Since:
- 17.10.0
-
-
Field Summary
Fields Modifier and Type Field Description StringdeliveryChannelThe delivery channel name to switch to (optional).IntegermaxRetryAttemptsThe maximum number of retry attempts.IntegerretryIntervalsMinsThe delivery retry interval in minutes.StringstatusThe delivery function result.static StringSTATUS_COMPLETEDThe delivery 'Completed' status.static StringSTATUS_ERRORThe delivery 'Error' status.static StringSTATUS_IN_PROGRESSThe delivery 'In Progress' status.-
Fields inherited from class com.avoka.tm.func.FuncResult
continueProcessing, data
-
-
Constructor Summary
Constructors Constructor Description DeliveryFuncResult()
-
-
-
Field Detail
-
STATUS_COMPLETED
public static final String STATUS_COMPLETED
The delivery 'Completed' status.- See Also:
- Constant Field Values
-
STATUS_ERROR
public static final String STATUS_ERROR
The delivery 'Error' status.- See Also:
- Constant Field Values
-
STATUS_IN_PROGRESS
public static final String STATUS_IN_PROGRESS
The delivery 'In Progress' status.- See Also:
- Constant Field Values
-
deliveryChannel
public String deliveryChannel
The delivery channel name to switch to (optional).
-
status
public String status
The delivery function result.
-
maxRetryAttempts
public Integer maxRetryAttempts
The maximum number of retry attempts.
-
retryIntervalsMins
public Integer retryIntervalsMins
The delivery retry interval in minutes.
-
-