Java NIO and TCP Connections: Difference between revisions
Jump to navigation
Jump to search
Line 6: | Line 6: | ||
=Overview= | =Overview= | ||
This article describes the programming model involved in establishing a simple TCP connection and interacting with it with non-blocking I/O, from Java. We use Java NIO APIs, introduced in Java 4. | This article describes the programming model involved in establishing a simple TCP connection and interacting with it with non-blocking I/O, from Java. We use [[NIO Concepts#Overview|Java NIO APIs]], introduced in Java 4. | ||
[[Image:JavaNIOAndTCPConnections.png]] | [[Image:JavaNIOAndTCPConnections.png]] |
Revision as of 17:42, 25 July 2018
Internal
Overview
This article describes the programming model involved in establishing a simple TCP connection and interacting with it with non-blocking I/O, from Java. We use Java NIO APIs, introduced in Java 4.