seaweedfs/weed/mq/client/sub_client/subscribe.go
2023-12-31 13:25:33 -08:00

12 lines
308 B
Go

package sub_client
// Subscribe subscribes to a topic's specified partitions.
// If a partition is moved to another broker, the subscriber will automatically reconnect to the new broker.
func (sub *TopicSubscriber) Subscribe() error {
// loop forever
sub.doKeepConnectedToSubCoordinator()
return nil
}