mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-04 09:52:30 +08:00
12 lines
200 B
Go
12 lines
200 B
Go
package pulsar
|
|
|
|
import "github.com/apache/pulsar-client-go/pulsar"
|
|
|
|
type pulsarID struct {
|
|
messageID pulsar.MessageID
|
|
}
|
|
|
|
func (pid *pulsarID) Serialize() []byte {
|
|
return pid.messageID.Serialize()
|
|
}
|