milvus/docs/developer_guides/chap04_message_stream.md
GuoRentong e8ec0424d8 Update doc: service api
Signed-off-by: GuoRentong <rentong.guo@zilliz.com>
2020-12-27 09:05:24 +08:00

486 B

8. Message Stream Service

8.1 Overview

8.2 API

type OwnerDescription struct {
  Role string
  Address string
  //Token string
  DescriptionText string
}

type ChannelDescription struct {
  Owner OwnerDescription
}

type Client interface {
  CreateChannels(ownerDescription OwnerDescription, numChannels int) (ChannelID []string, error)
  DestoryChannels(channelID []string) error
  DescribeChannels(channelID []string) ([]ChannelDescription, error)
}