Is there an equivalent of dead letters in pykka?
I.e. ability to see all the message (at least in a log) that were not delivered anywhere?
Currently, I implement this as follows in my actor:
if message.get('command') == 'poll':
# logic
else:
logging.log(logging.DEBUG, 'Dead letters: ' + str(message))
Is there an equivalent of dead letters in pykka?
I.e. ability to see all the message (at least in a log) that were not delivered anywhere?
Currently, I implement this as follows in my actor: