python-smpplib
python-smpplib copied to clipboard
Can i listen delivery report on a different process.
Hello I'm trying to use smpplib with the Django web framework, but there was an issue because the web request-response cycle is typically short-lived while delivery reports can arrive at any time. So I decided to use multiprocessing run on Django management command as a service to maintain a persistent connection to the smpp server and handle delivery reports as they arrive.
So my question is, Is this a best practice for using smpplib, would it cause any issues like some delivery reports being missed if yes what is the solution to this issue?
Thank you