You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// SeekByTime resets the subscription associated with this consumer to a specific message publish time.
//
// Note: this operation can only be done on non-partitioned topics. For these, one can rather perform the seek() on
// the individual partitions.
//
// @param time
// the message publish time when to reposition the subscription
//
SeekByTime(time time.Time) error
The currently interface description said Seek() and SeekByTime() does not support partitioned topic consumer. But in #782 , @GPrabhudas has introduced the consumer seek by time on partitioned topic.
I think we should remove the legacy interface description of SeekByTime
The text was updated successfully, but these errors were encountered:
Gleiphir2769
changed the title
[BUG] Legacy interface description of SeekByTime
[BUG] Outdated interface description of SeekByTimeDec 22, 2022
I noticed that the interface description of
SeekByTime
is outdated.pulsar-client-go/pulsar/consumer.go
Lines 268 to 276 in d92fb14
The currently interface description said
Seek()
andSeekByTime()
does not support partitioned topic consumer. But in #782 , @GPrabhudas has introduced the consumer seek by time on partitioned topic.I think we should remove the legacy interface description of
SeekByTime
The text was updated successfully, but these errors were encountered: