Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.net4j/src/org/eclipse/net4j/transport/Connector.java')
-rw-r--r--plugins/org.eclipse.net4j/src/org/eclipse/net4j/transport/Connector.java21
1 files changed, 11 insertions, 10 deletions
diff --git a/plugins/org.eclipse.net4j/src/org/eclipse/net4j/transport/Connector.java b/plugins/org.eclipse.net4j/src/org/eclipse/net4j/transport/Connector.java
index 28bf96d5b2..b21e3bdf93 100644
--- a/plugins/org.eclipse.net4j/src/org/eclipse/net4j/transport/Connector.java
+++ b/plugins/org.eclipse.net4j/src/org/eclipse/net4j/transport/Connector.java
@@ -22,15 +22,14 @@ import java.util.concurrent.ExecutorService;
* One endpoint of a physical connection of arbitrary nature between two
* communicating parties. A {@link Connector} encapsulates the process of
* establishing and closing such connections and has a {@link Type} of
- * {@link Type#CLIENT} or {@link Type#SERVER} with
- * respect to this process. Once a connection is established either party can
- * use its connector to open multiple {@link Channel}s to
- * asynchronously exchange {@link Buffer}s.
+ * {@link Type#CLIENT} or {@link Type#SERVER} with respect to this process. Once
+ * a connection is established either party can use its connector to open
+ * multiple {@link Channel}s to asynchronously exchange {@link Buffer}s.
* <p>
- * This interface is <b>not</b> intended to be implemented by clients. Providers of
- * connectors for new physical connection types have to subclass {@link AbstractConnector}
- * (see {@link ChannelImpl#setConnector(AbstractConnector)}.
- *
+ * This interface is <b>not</b> intended to be implemented by clients.
+ * Providers of connectors for new physical connection types have to subclass
+ * {@link AbstractConnector} (see
+ * {@link ChannelImpl#setConnector(AbstractConnector)}.
* <p>
*
* @author Eike Stepper
@@ -67,7 +66,8 @@ public interface Connector
public void connectAsync() throws ConnectorException;
/**
- * Blocks until <code>{@link #isConnected()} == true</code> or the given timeout expired.
+ * Blocks until <code>{@link #isConnected()} == true</code> or the given
+ * timeout expired.
* <p>
*
* @throws ConnectorException
@@ -76,7 +76,8 @@ public interface Connector
/**
* Synchronous connect. Blocks until <code>{@link #isConnected()} ==
- * true</code> or the given timeout expired.
+ * true</code>
+ * or the given timeout expired.
* <p>
*/
public boolean connect(long timeout) throws ConnectorException;

Back to the top