NIO: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
 
Line 5: Line 5:
* NIO.2 Examples http://www.concretepage.com/java/jdk7/
* NIO.2 Examples http://www.concretepage.com/java/jdk7/
* Use select for high-speed networking http://www.javaworld.com/article/2073344/core-java/use-select-for-high-speed-networking.html
* Use select for high-speed networking http://www.javaworld.com/article/2073344/core-java/use-select-for-high-speed-networking.html
* Tutorials
* Tutorials:
** Java NIO Tutorial http://tutorials.jenkov.com/java-nio/index.html
** Java NIO Tutorial http://tutorials.jenkov.com/java-nio/index.html
** Getting started with NIO http://cs.brown.edu/courses/cs161/papers/j-nio-ltr.pdf
** Getting started with NIO http://cs.brown.edu/courses/cs161/papers/j-nio-ltr.pdf

Latest revision as of 21:10, 19 January 2016

External

Internal

Overview

NIO and NIO.2 are a collection of Java APIs intended to be used for I/O intensive operations. NIO stands for Non-blocking I/O. NIO was introduced in Java 4 and NIO.2, which is a file system API extension, was introduced in Java 7. More ...

Subjects