xige-16 a48d46cfaf Alter msgID’s type to bytes
Signed-off-by: xige-16 <xi.ge@zilliz.com>
2021-03-27 09:46:54 +08:00

22 lines
490 B
Go

package client
type Client interface {
// Create a producer instance
CreateProducer(options ProducerOptions) (Producer, error)
// Create a consumer instance and subscribe a topic
Subscribe(options ConsumerOptions) (Consumer, error)
// Get the earliest MessageID
EarliestMessageID() MessageID
// String to msg ID
StringToMsgID(string) (MessageID, error)
// Bytes to msg ID
BytesToMsgID([]byte) (MessageID, error)
// Close the client and free associated resources
Close()
}