mateusjunges/laravel-kafka
Laravel Kafka brings a clean Laravel-friendly API for producing and consuming Kafka messages, with an emphasis on developer experience and easier testing. Ideal for integrating Kafka streams and event-driven workflows into your Laravel applications.
Sometimes, you may want to stop your consumer based on a given message or any other condition.
You can do it by adding a calling stopConsuming() method on the MessageConsumer instance that is passed as the
second argument of your message handler:
$consumer = \Junges\Kafka\Facades\Kafka::consumer(['topic'])
->withConsumerGroupId('group')
->stopAfterLastMessage()
->withHandler(static function (\Junges\Kafka\Contracts\ConsumerMessage $message, \Junges\Kafka\Contracts\MessageConsumer $consumer) {
if ($someCondition) {
$consumer->stopConsuming();
}
})
->build();
$consumer->consume();
The onStopConsuming callback will be executed before stopping your consumer.
<x-sponsors.request-sponsor/>
How can I help you explore Laravel packages today?