java.nio.channels

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Apache Harmony Java SE » java package » java.nio.channels 
java.nio.channels
Java Source File NameTypeComment
AlreadyConnectedException.javaClass Thrown when an attempt is made to connect a SocketChannel that is already connected.
AsynchronousCloseException.javaClass Thrown when the underlying channel for an IO operation is closed by another thread.
ByteChannel.javaInterface A ByteChannel is both readable and writable.
CancelledKeyException.javaClass Thrown when an invalid selection key is used.
Channel.javaInterface A channel is a conduit to IO services covering such items as files, sockets, hardware devices, IO ports, or some software component.

Channels are open upon creation, and can be explicitly closed.

Channels.javaClass This class provides several utilities to get I/O streams from channels.
ClosedByInterruptException.javaClass Thrown when a thread is interrupted in a blocking IO operation.
ClosedChannelException.javaClass This exception is thrown when a channel is closed for the type of operation attempted.
ClosedSelectorException.javaClass Thrown when an a selector is closed and an IO operation is attempted.
ConnectionPendingException.javaClass Thrown when an attempt is made to connect a SocketChannel that has a non-blocking connection already underway.
DatagramChannel.javaClass A DatagramChannel is a selectable channel for part abstraction of datagram socket.
FileChannel.javaClass An abstract channel type for interaction with a platform file.

A FileChannel defines the methods for reading, writing, memory mapping, and manipulating the logical state of a platform file.

FileLock.javaClass A FileLock represents a locked region of a file.

Locks have certain properties that enable collaborating processes to avoid the lost update problem, or reading inconsistent data.

logically, a file lock can be 'exclusive' or 'shared'.

FileLockInterruptionException.javaClass Thrown when thread was interrupted while waiting to acquire a file lock.
GatheringByteChannel.javaInterface The interface to channels that can write a set of buffers in a single operation.
IllegalBlockingModeException.javaClass Thrown when when operation that requires a specific blocking mode is invoked on a channel that is in a different blocking mode.
IllegalSelectorException.javaClass Thrown when a call is made to register a channel on a selector that has been created by a different provider.
InterruptibleChannel.javaInterface Channels that implement this interface are both asynchronously closable and interruptible.

A channel that is asynchronously closable permits a thread blocked on an IO operation (the IO thread) to be released by another thread calling the channel's close() method.

NoConnectionPendingException.javaClass Thrown if SocketChannel's finishConnect method is called before the SocketChannel's connect method completed without error.
NonReadableChannelException.javaClass Thrown when attempting to read from a channel that is not open for reading.
NonWritableChannelException.javaClass Thrown when attempting to write to a channel that is not open for writing.
NotYetBoundException.javaClass Thrown if the server socket channel is not bound before an IO operation is made.
NotYetConnectedException.javaClass Thrown if the socket channel is not connected before an IO operation is invoked.
OverlappingFileLockException.javaClass Thrown when attempting to acquire a lock that overlaps an existing or pending lock held by this process.
Pipe.javaClass A pipe contains two channels.
ReadableByteChannel.javaInterface A ReadableByteChannel is a type of Channel that can read bytes.

Reads are synchronous on a ReadableByteChannel, that is, if a read is already in progress on the channel then subsequent reads will block until the first read completes.

ScatteringByteChannel.javaInterface The interface to channels that can read a set of buffers in a single operation.
SelectableChannel.javaClass A channel that can be detected by a selector.
SelectionKey.javaClass A key that representing the relationship of a channel and the selector.
Selector.javaClass A controller for selection of SelectableChannel objects. Selectable channels can be registered with a selector, and get SelectionKey as a linkage.
ServerSocketChannel.javaClass A ServerSocketChannel is a partly abstracted stream-oriented listening socket which is selectable.
SocketChannel.javaClass A SocketChannel is a selectable channel for part abstraction of stream connecting socket.
UnresolvedAddressException.javaClass Thrown when trying to use an unresolved network address in a network operation.
UnsupportedAddressTypeException.javaClass Thrown when connecting or binding to an unsupported address type.
WritableByteChannel.javaInterface A WritableByteChannel is a type of Channel that can write bytes.

Writes are synchronous on a WritableByteChannel, that is, if a write is already in progress on the channel then subsequent writes will block until the first write completes.

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.