Skip to content
Advertisement

Tag: service

python service inside thread inside singleton

I have a singleton in which I want to receive data from a service. Since I’m new to python the only way I could figure this out was that a service sends the data up to the singleton via a method pointer. I use the thread to hinder the service to lock the singleton with its infinite loop. The actual

Advertisement