Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.net4j/src/org/eclipse/emf/cdo/net4j/RecoveringCDOSessionConfiguration.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.net4j/src/org/eclipse/emf/cdo/net4j/RecoveringCDOSessionConfiguration.java84
1 files changed, 42 insertions, 42 deletions
diff --git a/plugins/org.eclipse.emf.cdo.net4j/src/org/eclipse/emf/cdo/net4j/RecoveringCDOSessionConfiguration.java b/plugins/org.eclipse.emf.cdo.net4j/src/org/eclipse/emf/cdo/net4j/RecoveringCDOSessionConfiguration.java
index 7362193bfd..6ca23dacd9 100644
--- a/plugins/org.eclipse.emf.cdo.net4j/src/org/eclipse/emf/cdo/net4j/RecoveringCDOSessionConfiguration.java
+++ b/plugins/org.eclipse.emf.cdo.net4j/src/org/eclipse/emf/cdo/net4j/RecoveringCDOSessionConfiguration.java
@@ -1,42 +1,42 @@
-/*
- * Copyright (c) 2004 - 2012 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:
- * Caspar De Groot - initial API and implementation
- */
-package org.eclipse.emf.cdo.net4j;
-
-import org.eclipse.net4j.signal.heartbeat.HeartBeatProtocol;
-
-/**
- * A {@link CDONet4jSessionConfiguration session configuration} that uses a {@link HeartBeatProtocol heart beat
- * protocol} to detect network problems. Subtypes specify the exact behaviour to recover from these problems.
- *
- * @author Caspar De Groot
- * @since 4.0
- * @noextend This interface is not intended to be extended by clients.
- * @noimplement This interface is not intended to be implemented by clients.
- */
-@SuppressWarnings("deprecation")
-public interface RecoveringCDOSessionConfiguration extends CDOSessionConfiguration
-{
- public boolean isHeartBeatEnabled();
-
- public void setHeartBeatEnabled(boolean enabled);
-
- public long getHeartBeatPeriod();
-
- public void setHeartBeatPeriod(long period);
-
- public long getHeartBeatTimeout();
-
- public void setHeartBeatTimeout(long timeout);
-
- public long getConnectorTimeout();
-
- public void setConnectorTimeout(long timeout);
-}
+/*
+ * Copyright (c) 2004 - 2012 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:
+ * Caspar De Groot - initial API and implementation
+ */
+package org.eclipse.emf.cdo.net4j;
+
+import org.eclipse.net4j.signal.heartbeat.HeartBeatProtocol;
+
+/**
+ * A {@link CDONet4jSessionConfiguration session configuration} that uses a {@link HeartBeatProtocol heart beat
+ * protocol} to detect network problems. Subtypes specify the exact behaviour to recover from these problems.
+ *
+ * @author Caspar De Groot
+ * @since 4.0
+ * @noextend This interface is not intended to be extended by clients.
+ * @noimplement This interface is not intended to be implemented by clients.
+ */
+@SuppressWarnings("deprecation")
+public interface RecoveringCDOSessionConfiguration extends CDOSessionConfiguration
+{
+ public boolean isHeartBeatEnabled();
+
+ public void setHeartBeatEnabled(boolean enabled);
+
+ public long getHeartBeatPeriod();
+
+ public void setHeartBeatPeriod(long period);
+
+ public long getHeartBeatTimeout();
+
+ public void setHeartBeatTimeout(long timeout);
+
+ public long getConnectorTimeout();
+
+ public void setConnectorTimeout(long timeout);
+}

Back to the top