Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.net4j/src/org/eclipse/net4j/signal/failover/RetryFailOverStrategy.java')
-rw-r--r--plugins/org.eclipse.net4j/src/org/eclipse/net4j/signal/failover/RetryFailOverStrategy.java94
1 files changed, 0 insertions, 94 deletions
diff --git a/plugins/org.eclipse.net4j/src/org/eclipse/net4j/signal/failover/RetryFailOverStrategy.java b/plugins/org.eclipse.net4j/src/org/eclipse/net4j/signal/failover/RetryFailOverStrategy.java
deleted file mode 100644
index acd2628bfb..0000000000
--- a/plugins/org.eclipse.net4j/src/org/eclipse/net4j/signal/failover/RetryFailOverStrategy.java
+++ /dev/null
@@ -1,94 +0,0 @@
-/**
- * Copyright (c) 2004 - 2010 Eike Stepper (Berlin, Germany) and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Eike Stepper - initial API and implementation
- */
-package org.eclipse.net4j.signal.failover;
-
-import org.eclipse.net4j.connector.IConnector;
-import org.eclipse.net4j.signal.ISignalProtocol;
-import org.eclipse.net4j.util.WrappedException;
-
-import org.eclipse.internal.net4j.bundle.OM;
-
-import java.text.MessageFormat;
-
-/**
- * @author Eike Stepper
- */
-public class RetryFailOverStrategy extends NOOPFailOverStrategy
-{
- /**
- * @since 2.0
- */
- public static final int RETRY_FOREVER = -1;
-
- private int retries;
-
- /**
- * @since 2.0
- */
- public RetryFailOverStrategy(IConnector connector, int retries)
- {
- super(connector);
- this.retries = retries;
- }
-
- public RetryFailOverStrategy(IConnector connector)
- {
- this(connector, RETRY_FOREVER);
- }
-
- /**
- * @since 2.0
- */
- public int getRetries()
- {
- return retries;
- }
-
- /**
- * @since 2.0
- */
- public boolean isRetryingForever()
- {
- return retries < 0;
- }
-
- @Override
- public void handleFailOver(ISignalProtocol<?> protocol, Exception reason)
- {
- Exception exception = null;
- int max = isRetryingForever() ? Integer.MAX_VALUE : retries;
- for (int i = 0; i < max; i++)
- {
- try
- {
- handleOpen(protocol);
- return;
- }
- catch (Exception ex)
- {
- OM.LOG.error(ex);
- exception = ex;
- }
- }
-
- if (exception != null)
- {
- throw WrappedException.wrap(exception);
- }
- }
-
- @Override
- public String toString()
- {
- Object arg = isRetryingForever() ? "forever" : retries;
- return MessageFormat.format("RetryFailOverStrategy[retries={0}]", arg); //$NON-NLS-1$
- }
-}

Back to the top