AbstractRetrySchemepublic abstract class AbstractRetryScheme extends Object
Fields Summary |
---|
public static final int | OUTGOING | public static final int | INCOMING | protected int | mType | protected int | mRetriedTimes | protected int | mErrorType |
Constructors Summary |
---|
public AbstractRetryScheme()
this(OUTGOING);
| public AbstractRetryScheme(int type)
this(type, 0);
| public AbstractRetryScheme(int type, int retriedTimes)
this(type, retriedTimes, MmsSms.ERR_TYPE_GENERIC);
| public AbstractRetryScheme(int type, int retriedTimes, int errorType)
mType = type;
mRetriedTimes = retriedTimes;
mErrorType = errorType;
|
Methods Summary |
---|
public abstract int | getRetryLimit()
| public abstract long | getWaitingInterval()
|
|