aprs-python icon indicating copy to clipboard operation
aprs-python copied to clipboard

Added support for consumer kwargs

Open hemna opened this issue 3 years ago • 2 comments

I have an app that uses consumer, but needs to pass in some kwargs for consumption at consumer function call time. This patch adds kwargs support to consumer creation as well as passing those kwargs at consumer callback time.

hemna avatar Dec 22 '20 17:12 hemna

Hi @hemna, thanks for the PR. Not sure what the exact use case for this would be, but it doesn't make sense to me to be part of the package. Have you tried functools.partial ?

rossengeorgiev avatar Dec 22 '20 23:12 rossengeorgiev

I am writing a gateway like app, which consumes messages from APRS-IS sends those parsed messages through some plugins and responds in separate threads. I need to pass along a queue object, so I can stuff messages to be sent in the queue, without using global variables. it makes sense to be allowed to pass various other params along with a consumer, to keep code clean without the need to use global vars everywhere.

This is the app I'm helping write: https://github.com/craigerl/aprsd

hemna avatar Dec 23 '20 16:12 hemna