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.

16 lines
379 B

2 years ago
  1. package broker
  2. import (
  3. "github.com/seaweedfs/seaweedfs/weed/pb/mq_pb"
  4. )
  5. /*
  6. The messages is buffered in memory, and saved to filer under
  7. /topics/<topic>/<date>/<hour>/<segment>/*.msg
  8. /topics/<topic>/<date>/<hour>/segment
  9. /topics/<topic>/info/segment_<id>.meta
  10. */
  11. func (broker *MessageQueueBroker) Publish(stream mq_pb.SeaweedMessaging_PublishServer) error {
  12. return nil
  13. }