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
Seems this was attempted in 2016 in #93 however something was not quite done "all the way" it seems.
Always the hardcoded
private[kafka] def rebalanceListener(onAssign: Set[TopicPartition] => Unit, onRevoke: Set[TopicPartition] => Unit): ListenerCallbacks = ListenerCallbacks(onAssign, onRevoke)
def rebalanceListener = KafkaConsumerActor.rebalanceListener(tps => partitionAssignedCB.invoke(tps), partitionRevokedCB.invoke)
is used instead of one provided by the user.
It seems like it was intended to be able to pass it in a Subscription, but was never done?
The text was updated successfully, but these errors were encountered:
cc @kciesielski @patriknw
I'll work on this as got someone requesting it
Sorry, something went wrong.
Add ability to set rebalance listeners from user code #421
d66ede3
Merge pull request #423 from akka/wip-user-set-rebalance-listener
b5096f0
No branches or pull requests
Seems this was attempted in 2016 in #93 however something was not quite done "all the way" it seems.
Always the hardcoded
is used instead of one provided by the user.
It seems like it was intended to be able to pass it in a Subscription, but was never done?
The text was updated successfully, but these errors were encountered: