Sockets versus Channels: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
This page shall contain information and updates on comparison of network performance when using Sockets (java.net.Socket) and when using the new Channel in Java | This page shall contain information and updates on comparison of network performance when using [http://java.sun.com/j2se/1.4.2/docs/api/java/net/Socket.html Sockets] (java.net.Socket) and when using the new [http://java.sun.com/j2se/1.4.2/docs/api/java/nio/channels/Channel.html Channel] introduced in Java 1.4 ([http://java.sun.com/j2se/1.4.2/docs/api/java/nio/channels/SocketChannel.html java.nio.channels.SocketChannel]). | ||
==External Links== | |||
* Sun's page on the new I/O APIs, [http://java.sun.com/j2se/1.4.2/docs/guide/nio/ here]. |
Latest revision as of 19:09, 7 June 2006
This page shall contain information and updates on comparison of network performance when using Sockets (java.net.Socket) and when using the new Channel introduced in Java 1.4 (java.nio.channels.SocketChannel).
External Links
- Sun's page on the new I/O APIs, here.