Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d942bd57383ecf5f8545331d8ef1dbcc74aa50de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Copyright (c) 2011, 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: Eike Stepper - initial API
 * and implementation
 */

/**
 * The Net4j transport layer.
 * <p>
 * <img src="doc-files/architecture.png" title="Diagram Architecture" border="0"/>
 * <p>
 * The five main interfaces of the transport layer are:
 * 	<ul>
 * 		<li>{@link org.eclipse.net4j.buffer.IBuffer}</li>
 * 		<li>{@link org.eclipse.net4j.channel.IChannel}</li>
 * 		<li>{@link org.eclipse.net4j.acceptor.IAcceptor}</li>
 * 		<li>{@link org.eclipse.net4j.connector.IConnector}</li>
 * 		<li>{@link org.eclipse.net4j.protocol.IProtocol}</li>
 * 	</ul>
 */
package org.eclipse.net4j;

Back to the top