Java NIO and TCP Connections: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 12: Line 12:
==Server==
==Server==


The server will use a Selector
The server code uses a [[Java_Non-Blocking_I/O_Concepts#Selector|Selector]]


==Client==
==Client==

Revision as of 17:48, 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.

Programming Model

Server

The server code uses a Selector

Client

JavaNIOAndTCPConnections.png

Example

Playground Java NIO and TCP Connections