source: proiecte/HadoopJUnit/hadoop-0.20.1/src/core/org/apache/hadoop/io/retry/RetryProxy.java @ 120

Last change on this file since 120 was 120, checked in by (none), 14 years ago

Added the mail files for the Hadoop JUNit Project

  • Property svn:executable set to *
File size: 2.7 KB
Line 
1/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements.  See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership.  The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License.  You may obtain a copy of the License at
9 *
10 *     http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18package org.apache.hadoop.io.retry;
19
20import java.lang.reflect.Proxy;
21import java.util.Map;
22
23/**
24 * <p>
25 * A factory for creating retry proxies.
26 * </p>
27 */
28public class RetryProxy {
29  /**
30   * <p>
31   * Create a proxy for an interface of an implementation class
32   * using the same retry policy for each method in the interface.
33   * </p>
34   * @param iface the interface that the retry will implement
35   * @param implementation the instance whose methods should be retried
36   * @param retryPolicy the policy for retirying method call failures
37   * @return the retry proxy
38   */
39  public static Object create(Class<?> iface, Object implementation,
40                              RetryPolicy retryPolicy) {
41    return Proxy.newProxyInstance(
42                                  implementation.getClass().getClassLoader(),
43                                  new Class<?>[] { iface },
44                                  new RetryInvocationHandler(implementation, retryPolicy)
45                                  );
46  } 
47 
48  /**
49   * <p>
50   * Create a proxy for an interface of an implementation class
51   * using the a set of retry policies specified by method name.
52   * If no retry policy is defined for a method then a default of
53   * {@link RetryPolicies#TRY_ONCE_THEN_FAIL} is used.
54   * </p>
55   * @param iface the interface that the retry will implement
56   * @param implementation the instance whose methods should be retried
57   * @param methodNameToPolicyMap a map of method names to retry policies
58   * @return the retry proxy
59   */
60  public static Object create(Class<?> iface, Object implementation,
61                              Map<String,RetryPolicy> methodNameToPolicyMap) {
62    return Proxy.newProxyInstance(
63                                  implementation.getClass().getClassLoader(),
64                                  new Class<?>[] { iface },
65                                  new RetryInvocationHandler(implementation, methodNameToPolicyMap)
66                                  );
67  }
68}
Note: See TracBrowser for help on using the repository browser.