|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.hadoop.io.retry.RetryProxy
public class RetryProxy
A factory for creating retry proxies.
Constructor Summary | |
---|---|
RetryProxy()
|
Method Summary | |
---|---|
static Object |
create(Class<?> iface,
Object implementation,
Map<String,RetryPolicy> methodNameToPolicyMap)
Create a proxy for an interface of an implementation class using the a set of retry policies specified by method name. |
static Object |
create(Class<?> iface,
Object implementation,
RetryPolicy retryPolicy)
Create a proxy for an interface of an implementation class using the same retry policy for each method in the interface. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public RetryProxy()
Method Detail |
---|
public static Object create(Class<?> iface, Object implementation, RetryPolicy retryPolicy)
Create a proxy for an interface of an implementation class using the same retry policy for each method in the interface.
iface
- the interface that the retry will implementimplementation
- the instance whose methods should be retriedretryPolicy
- the policy for retirying method call failures
public static Object create(Class<?> iface, Object implementation, Map<String,RetryPolicy> methodNameToPolicyMap)
Create a proxy for an interface of an implementation class
using the a set of retry policies specified by method name.
If no retry policy is defined for a method then a default of
RetryPolicies.TRY_ONCE_THEN_FAIL
is used.
iface
- the interface that the retry will implementimplementation
- the instance whose methods should be retriedmethodNameToPolicyMap
- a map of method names to retry policies
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |