Enum tells the choice made by an Arbiter, to retry or not
const (
// Done tells the arbiter decided the last retry succeeded Done Enum = iota// Retry tells the arbiter decided to execute the next retry Retry
// Abort tells the arbiter decided something wrong occurred; the Action must stop with error Abort
)