PublisherThread

class support.threading_util.publisher_thread.PublisherThread(server, thread_name=None, bus=None)

Bases: support.threading_util.pausable_thread.PausableThread

A barebones publisher thread.

Meant to be subclassed.

The run method needs to be reimplemented in the subclass.

Methods Summary

run()

Method representing the thread’s activity.

Methods Documentation

run()

Method representing the thread’s activity.

You may override this method in a subclass. The standard run() method invokes the callable object passed to the object’s constructor as the target argument, if any, with sequential and keyword arguments taken from the args and kwargs arguments, respectively.