Skip to content
New issue

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

chore: added a method to determine whether the consumer should be executed #63

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

mjroson
Copy link

@mjroson mjroson commented Aug 24, 2023

Example to override this method to start SO signals

class SignalHandler:
    def __init__(self):
        self.received_signal = False
        signal(SIGINT, self._signal_handler)
        signal(SIGTERM, self._signal_handler)

    def _signal_handler(self, signal, frame):
        logger.info("Handling signal %s, exiting gracefully", signal)
        self.received_signal = True
        
        
 class MyListener(SqsListener):
     def _condition_to_listening(self):
         if not getattr(self, "signal_handler"):
             self.signal_handler = SignalHandler()
         return not signal_handler.received_signal
         
     def handle_message(self, body, attributes, messages_attributes):
         pass

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant