Broadway.Producer.prepare_for_draining

You're seeing just the callback prepare_for_draining, go back to Broadway.Producer module for more information.
Link to this callback

prepare_for_draining(state)

View Source (optional)

Specs

prepare_for_draining(state :: any()) ::
  {:noreply, [event], new_state}
  | {:noreply, [event], new_state, :hibernate}
  | {:stop, reason :: term(), new_state}
when new_state: term(), event: term()

Invoked by the terminator right before Broadway starts draining in-flight messages during shutdown.

This callback should be implemented by producers that need to do additional work before shutting down. That includes active producers like RabbitMQ that must ask the data provider to stop sending messages. It will be invoked for each producer stage.

state is the current state of the producer.