mirror of https://github.com/milvus-io/milvus.git
7 lines
91 B
Go
7 lines
91 B
Go
|
package flowgraph
|
||
|
|
||
|
type Msg interface {
|
||
|
TimeTick() Timestamp
|
||
|
DownStreamNodeIdx() int32
|
||
|
}
|