Last active
August 29, 2015 14:03
-
-
Save lanhuai/2aae40b6b4358d1f9fb1 to your computer and use it in GitHub Desktop.
Java NIO 类关系图
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@startuml | |
interface ReadableByteChannel | |
interface WritableByteChannel | |
interface InterruptibleChannel | |
interface GatheringByteChannel | |
interface ScatteringByteChannel | |
interface Channel | |
interface ByteChannel | |
abstract AbstractInterruptibleChannel | |
abstract SelectableChannel | |
abstract AbstractSelectableChannel | |
abstract ServerSocketChannel | |
abstract SocketChannel | |
abstract DatagramChannel | |
ReadableByteChannel -up-|> Channel | |
WritableByteChannel -up-|> Channel | |
InterruptibleChannel -up-|> Channel | |
ByteChannel -up-|> ReadableByteChannel | |
ByteChannel -up-|> WritableByteChannel | |
ScatteringByteChannel -up-|> ReadableByteChannel | |
GatheringByteChannel -up-|> WritableByteChannel | |
GatheringByteChannel <|.. DatagramChannel | |
GatheringByteChannel <|.. SocketChannel | |
ByteChannel <|.. DatagramChannel | |
ByteChannel <|.. SocketChannel | |
ScatteringByteChannel <|.. DatagramChannel | |
ScatteringByteChannel <|.. SocketChannel | |
InterruptibleChannel <|.. AbstractInterruptibleChannel | |
Channel <|.. AbstractInterruptibleChannel | |
Channel <|.. SelectableChannel | |
AbstractInterruptibleChannel <|-- SelectableChannel | |
SelectableChannel <|-- AbstractSelectableChannel | |
AbstractSelectableChannel <|-- DatagramChannel | |
AbstractSelectableChannel <|-- SocketChannel | |
AbstractSelectableChannel <|-- ServerSocketChannel | |
Channel : + boolean isOpen() | |
Channel : + void close() | |
ReadableByteChannel : + int read(ByteBuffer dst) | |
WritableByteChannel : + int write(ByteBuffer src) | |
InterruptibleChannel : + void close() | |
GatheringByteChannel : + long write(ByteBuffer[] srcs) | |
ScatteringByteChannel : + long read(ByteBuffer[] dsts) | |
@enduml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
以上PlantUML代码生成的图片:http://uml.mvnsearch.org/gist/2aae40b6b4358d1f9fb1