摘要: package dag import ( "context" "ina-fei/api/internal/config" "ina-fei/api/internal/types" "log" "sync" ) type Graph struct { // nodes to run Nodes []* 阅读全文
posted @ 2021-04-12 18:47 gostreamer 阅读(224) 评论(0) 推荐(0)
摘要: package stream import ( "log" "reflect" "sort" ) type ( // a Stream is where one can drain data from Stream chan interface{} // buffer stream BufferSt 阅读全文
posted @ 2021-04-12 18:44 gostreamer 阅读(370) 评论(0) 推荐(0)