mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-01 16:35:29 +08:00
7 lines
153 B
Go
7 lines
153 B
Go
package client
|
|
|
|
type MessageID interface {
|
|
// Serialize the message id into a sequence of bytes that can be stored somewhere else
|
|
Serialize() []byte
|
|
}
|