Skip to content

Instantly share code, notes, and snippets.

@lanhuai
Last active August 29, 2015 14:03
Show Gist options
  • Save lanhuai/2aae40b6b4358d1f9fb1 to your computer and use it in GitHub Desktop.
Save lanhuai/2aae40b6b4358d1f9fb1 to your computer and use it in GitHub Desktop.
Java NIO 类关系图
@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
@lanhuai
Copy link
Author

lanhuai commented Jul 29, 2014

以上PlantUML代码生成的图片:http://uml.mvnsearch.org/gist/2aae40b6b4358d1f9fb1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment