类似这种ASCII字符画的图可以用什么软件绘制/生成?
发布于 1 个月前 作者 p2227 269 次浏览 来自 问答
//     upstream side                  stream                  user side
//
//                    +------------------------------------+
//                    |                                    |
//                    +------------------+                 |
//                    |     upstream     |                 |
//                    |                  |                 |
//                    +--+               |              +--|
//            read()  |  |  _send()      |    _write()  |  |  write(buf)
//     <--------------|B |<--------------|--------------| B|<------------
//                    |  |               |              |  |
//            frames  +--+               |              +--|  buffers
//                    |  |               |              |  |
//     -------------->|B |---------------|------------->| B|------------>
//      write(frame)  |  |  _receive()   |     _read()  |  |  read()
//                    +--+               |              +--|
//                    |                  |                 |
//                    |                  |                 |
//                    +------------------+                 |
//                    |                                    |
//                    +------------------------------------+

https://github.com/molnarg/node-http2/blob/master/lib/protocol/stream.js#L187-L209

2 回复

@Shonke 好的,谢谢。原来叫“ASCII 文本流程图” “ASCII Flow”

回到顶部