mostafa-v

Results 1 comments of mostafa-v

here is the code of release method in my custom subscriber class: ``` def release(self): if self._subscription and self._subscription.subscribed: self._subscription.unsubscribe() if self._publishers: message = RedisMessage('Bye') self.publish_message(message) # I want to...