You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
365 B
14 lines
365 B
package agent_client
|
|
|
|
import (
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/mq_agent_pb"
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/schema_pb"
|
|
)
|
|
|
|
func (a *PublishSession) PublishMessageRecord(key []byte, record *schema_pb.RecordValue) error {
|
|
return a.stream.Send(&mq_agent_pb.PublishRecordRequest{
|
|
SessionId: a.sessionId,
|
|
Key: key,
|
|
Value: record,
|
|
})
|
|
}
|