Created
August 3, 2020 11:13
-
-
Save abarya/f96199edc038c7c289baa0ac05cc33c6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def processMessage(message): | |
'''call various processor functions that process the message in their own ways and log results. | |
All the processor functions are independent of each other.''' | |
doSomething1(message) | |
doSomething2(message) | |
doSomething3(message) | |
doSomething4(message) | |
def doSomething*(message): | |
'''process message and log results''' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment