Apache CXF API

org.apache.cxf.ws.rm
Interface RetryStatus

All Known Implementing Classes:
RetransmissionQueueImpl.ResendCandidate

public interface RetryStatus

A generic interface to represent the retrying status of a repeating activity at some WS-RM component.


Method Summary
 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

Apache CXF API

Apache CXF