Process

class maze.utils.process.Process(target, args=(), kwargs=None)

A wrapper for multiprocessing.Process that supports exception handling and return objects.

exception() → Optional[Exception]

Get any exception that might occurred.

result() → Any

Returns the result (if any)

run()None

overwrite Process.run()