Skip to content

Commit

Permalink
Minor README improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
marianobarrios authored Jul 22, 2017
1 parent 998237a commit 4296562
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ In version 1.4, a [new IO API](https://docs.oracle.com/javase/8/docs/api/java/ni

- Non-blocking operations.
- A higher lever API, based on wrapped buffers ([ByteBuffers](https://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html)).
- Direct IO, that can use "direct" ByteBuffers, that can live out of the heap. This is specially advantageous, as the JVM forces an extra copy for any heap array sent in a native call (to facilitate synchronization with the garbage collector).
- Direct IO, with "direct" ByteBuffers, that can live out of the heap. This is specially advantageous, as the JVM forces an extra copy for any heap array sent in a native call (to facilitate synchronization with the garbage collector).
- "[Scattering](https://docs.oracle.com/javase/8/docs/api/java/nio/channels/ScatteringByteChannel.html)" and "[gathering](https://docs.oracle.com/javase/8/docs/api/java/nio/channels/GatheringByteChannel.html)" API, that is, the ability to use more than one sequential buffer in the same IO operation.

But no TLS support, which was only available in old-style sockets.
Expand Down

0 comments on commit 4296562

Please sign in to comment.