public interface ControlFlowConsts
ControlFlowConsts
define values used inside a control flow.Modifier and Type | Field and Description |
---|---|
static long |
MAX_CODE_LOOP_SLEEP_TIME_IN_MS |
static long |
MAX_DAEMON_LOOP_SLEEP_TIME_IN_MS |
static int |
MAX_EXPONENTIAL_RETRY_DELAY_EXTENSION_TIME_IN_MS
A retry is being extended for each retry by an exponential delay
extension time (when > 0):
long theDelay = (long) ( Math.pow(4, theRetries++ ) * EXTENSION_TIME ));
|
static long |
MAX_IO_LATENCY_SLEEP_TIME_MS |
static int |
MAX_IO_RETRIES |
static long |
MAX_IO_TIMEOUT_IN_MS |
static int |
MAX_NUM_RETRIES |
static int |
MAX_NUM_RETRY_LOOPS |
static long |
MAX_SCHEDULE_SLEEP_TIME_IN_MS |
static long |
MIN_CODE_LOOP_SLEEP_TIME_IN_MS |
static long |
MIN_DAEMON_LOOP_SLEEP_TIME_IN_MS |
static int |
MIN_EXPONENTIAL_RETRY_DELAY_EXTENSION_TIME_IN_MS
A retry is being extended for each retry by an exponential delay
extension time (when > 0):
long theDelay = (long) ( Math.pow(4, theRetries++ ) * EXTENSION_TIME ));
|
static long |
MIN_IO_LATENCY_SLEEP_TIME_IN_MS |
static int |
MIN_IO_RETRIES |
static long |
MIN_IO_TIMEOUT_IN_MS |
static int |
MIN_NUM_RETRIES |
static int |
MIN_NUM_RETRY_LOOPS |
static long |
MIN_SCHEDULE_SLEEP_TIME_IN_MS |
static long |
NORM_CODE_LOOP_SLEEP_TIME_IN_MS |
static long |
NORM_DAEMON_LOOP_SLEEP_TIME_IN_MS |
static int |
NORM_EXPONENTIAL_RETRY_DELAY_EXTENSION_TIME_IN_MS
A retry is being extended for each retry by an exponential delay
extension time (when > 0):
long theDelay = (long) ( Math.pow(4, theRetries++ ) * EXTENSION_TIME ));
|
static long |
NORM_IO_LATENCY_SLEEP_TIME_IN_MS |
static int |
NORM_IO_RETRIES |
static long |
NORM_IO_TIMEOUT_IN_MS |
static int |
NORM_NUM_RETRIES |
static int |
NORM_NUM_RETRY_LOOPS |
static long |
NORM_SCHEDULE_SLEEP_TIME_IN_MS |
static final long MIN_CODE_LOOP_SLEEP_TIME_IN_MS
static final long NORM_CODE_LOOP_SLEEP_TIME_IN_MS
static final long MAX_CODE_LOOP_SLEEP_TIME_IN_MS
static final long MIN_DAEMON_LOOP_SLEEP_TIME_IN_MS
static final long NORM_DAEMON_LOOP_SLEEP_TIME_IN_MS
static final long MAX_DAEMON_LOOP_SLEEP_TIME_IN_MS
static final long MIN_IO_LATENCY_SLEEP_TIME_IN_MS
static final long NORM_IO_LATENCY_SLEEP_TIME_IN_MS
static final long MAX_IO_LATENCY_SLEEP_TIME_MS
static final long MIN_SCHEDULE_SLEEP_TIME_IN_MS
static final long NORM_SCHEDULE_SLEEP_TIME_IN_MS
static final long MAX_SCHEDULE_SLEEP_TIME_IN_MS
static final long MIN_IO_TIMEOUT_IN_MS
static final long NORM_IO_TIMEOUT_IN_MS
static final long MAX_IO_TIMEOUT_IN_MS
static final int MIN_EXPONENTIAL_RETRY_DELAY_EXTENSION_TIME_IN_MS
http://awsdocs.s3.amazonaws.com/SDB/latest/sdb-dg.pdf
,
Constant Field Valuesstatic final int NORM_EXPONENTIAL_RETRY_DELAY_EXTENSION_TIME_IN_MS
http://awsdocs.s3.amazonaws.com/SDB/latest/sdb-dg.pdf
,
Constant Field Valuesstatic final int MAX_EXPONENTIAL_RETRY_DELAY_EXTENSION_TIME_IN_MS
http://awsdocs.s3.amazonaws.com/SDB/latest/sdb-dg.pdf
,
Constant Field Valuesstatic final int MIN_NUM_RETRY_LOOPS
static final int NORM_NUM_RETRY_LOOPS
static final int MAX_NUM_RETRY_LOOPS
static final int MIN_NUM_RETRIES
static final int NORM_NUM_RETRIES
static final int MAX_NUM_RETRIES
static final int MIN_IO_RETRIES
static final int NORM_IO_RETRIES
static final int MAX_IO_RETRIES
Copyright © 2016. All rights reserved.