I have a gRPC server running that responds to external requests. I also have a Django app that takes care of all other web related events. I want to send a signal to the Django app when the gRPC server receives requests. (The gRPC system was already in place. The Django app is an extension)
Since using Django signals outside the app doesn't work (no context), I want another way to send some kind of notification to the app.
I am aware that this is a very unlikely scenario.
I implemented the first method. There could be other ways too.