mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-06 19:02:18 +08:00
19 lines
398 B
Protocol Buffer
19 lines
398 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package milvus.proto.log;
|
|
|
|
option go_package = "github.com/milvus-io/milvus/internal/proto/logpb";
|
|
|
|
import "milvus.proto";
|
|
import "google/protobuf/empty.proto";
|
|
|
|
//
|
|
// Common
|
|
//
|
|
|
|
// Message is the basic unit of communication between publisher and consumer.
|
|
message Message {
|
|
bytes payload = 1; // message body
|
|
map<string, string> properties = 2; // message properties
|
|
}
|