Package org.apache.cxf.ws.rm
Interface RetryStatus
-
- All Known Implementing Classes:
RedeliveryQueueImpl.RedeliverCandidate
,RetransmissionQueueImpl.ResendCandidate
public interface RetryStatus
A generic interface to represent the retrying status of a repeating activity at some WS-RM component.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getBackoff()
int
getMaxRetries()
Date
getNext()
long
getNextInterval()
Date
getPrevious()
int
getRetries()
boolean
isPending()
boolean
isSuspended()
-
-
-
Method Detail
-
getNext
Date getNext()
- Returns:
- the next retry time
-
getPrevious
Date getPrevious()
- Returns:
- the previous retry time
-
getRetries
int getRetries()
- Returns:
- the number of retries
-
getMaxRetries
int getMaxRetries()
- Returns:
- the max number of retries permitted
-
getNextInterval
long getNextInterval()
- Returns:
- the nextInterval
-
getBackoff
long getBackoff()
- Returns:
- the backoff
-
isPending
boolean isPending()
- Returns:
- the pending
-
isSuspended
boolean isSuspended()
- Returns:
- the suspended
-
-