Definition at line 130 of file ab.py.
◆ __init__()
def ab.ThreadWithException.__init__ |
( |
|
self, |
|
|
|
target |
|
) |
| |
Definition at line 131 of file ab.py.
131 def __init__(self, target):
132 super(ThreadWithException, self).__init__(target = target)
133 self.exception = None
134
◆ join()
def ab.ThreadWithException.join |
( |
|
self, |
|
|
|
timeout = None |
|
) |
| |
Definition at line 141 of file ab.py.
141 def join(self, timeout=None):
142 super(ThreadWithException, self).
join(timeout)
143
144
static SkString join(const CommandLineFlags::StringArray &)
◆ run()
def ab.ThreadWithException.run |
( |
|
self | ) |
|
Definition at line 135 of file ab.py.
136 try:
137 self._Thread__target(*self._Thread__args, **self._Thread__kwargs)
138 except BaseException as e:
139 self.exception = e
140
def run(args, threadRunner, name, nano, arg, i)
◆ exception
ab.ThreadWithException.exception |
The documentation for this class was generated from the following file:
- third_party/skia/tools/calmbench/ab.py