Check if the given message ID is the maximum attempt.
Source code in faststream/broker/acknowledgement_watcher.py
| @abstractmethod
def is_max(self, message_id: str) -> bool:
"""Check if the given message ID is the maximum attempt."""
raise NotImplementedError()
|