We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently it's defined as
def offsetsForTimes(timestampsToSearch: Map[TopicPartition, Offset]): F[Map[TopicPartition, Option[OffsetAndTimestamp]]]
while working on #122 we agreed with @t3hnar to have following method def for new RebalanceCallback API
RebalanceCallback
def offsetsForTimes[F[_]]( timestampsToSearch: Nem[TopicPartition, Instant] ): RebalanceCallback[F, Map[TopicPartition, Option[OffsetAndTimestamp]]]
The diff is
Instant
Offset
NonEmptyMap
Map
The same can be applied to corresponding Consumer methods
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently it's defined as
while working on #122 we agreed with @t3hnar to have following method def for new
RebalanceCallback
APIThe diff is
Instant
instead ofOffset
NonEmptyMap
instead of regular scalaMap
(which can be empty)The same can be applied to corresponding Consumer methods
The text was updated successfully, but these errors were encountered: