module parallel.threadhelper

Inheritance diagram of cpyquickhelper.parallel.threadhelper

Short summary

module cpyquickhelper.parallel.threadhelper

Shortcut to parallel.

source on GitHub

Classes

class

truncated documentation

KThread

Add methods kill to threading.Thread.

Properties

property

truncated documentation

daemon

A boolean value indicating whether this thread is a daemon thread. This must be set before start() is called, otherwise …

ident

Thread identifier of this thread or None if it has not been started. This is a nonzero integer. See the get_ident() …

name

A string used for identification purposes only. It has no semantics. Multiple threads may be given the same name. …

native_id

Native integral thread ID of this thread, or None if it has not been started. This is a non-negative integer. …

Methods

method

truncated documentation

kill

Kills the thread if not alreayd finished. Source: Python-Kill-Thread-Extension. …

Documentation

Shortcut to parallel.

source on GitHub

class cpyquickhelper.parallel.threadhelper.KThread(group=None, target=None, name=None, args=(), kwargs=None, *, daemon=None)

Bases: Thread

Add methods kill to threading.Thread.

source on GitHub

This constructor should always be called with keyword arguments. Arguments are:

group should be None; reserved for future extension when a ThreadGroup class is implemented.

target is the callable object to be invoked by the run() method. Defaults to None, meaning nothing is called.

name is the thread name. By default, a unique name is constructed of the form “Thread-N” where N is a small decimal number.

args is the argument tuple for the target invocation. Defaults to ().

kwargs is a dictionary of keyword arguments for the target invocation. Defaults to {}.

If a subclass overrides the constructor, it must make sure to invoke the base class constructor (Thread.__init__()) before doing anything else to the thread.

kill()

Kills the thread if not alreayd finished. Source: Python-Kill-Thread-Extension. The function still does not work. The found example is not really working and it is not safe anyway as it will leave the garbage collector in an unstable state.

Returns:

None if not alive, exit code otherwise.

source on GitHub