Python threading.Threads() Examples

The following are 5 code examples of threading.Threads(). You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may also want to check out all available functions/classes of the module threading , or try the search function .
Example #1
Source File: coordinator.py    From lambda-packs with MIT License 5 votes vote down vote up
def raise_requested_exception(self):
    """If an exception has been passed to `request_stop`, this raises it."""
    with self._lock:
      if self._exc_info_to_raise:
        six.reraise(*self._exc_info_to_raise)


# Threads for the standard services. 
Example #2
Source File: coordinator.py    From auto-alt-text-lambda-api with MIT License 5 votes vote down vote up
def raise_requested_exception(self):
    """If an exception has been passed to `request_stop`, this raises it."""
    with self._lock:
      if self._exc_info_to_raise:
        six.reraise(*self._exc_info_to_raise)


# Threads for the standard services. 
Example #3
Source File: coordinator.py    From deep_image_model with Apache License 2.0 5 votes vote down vote up
def joined(self):
    return self._joined


# Threads for the standard services. 
Example #4
Source File: coordinator.py    From Serverless-Deep-Learning-with-TensorFlow-and-AWS-Lambda with MIT License 5 votes vote down vote up
def raise_requested_exception(self):
    """If an exception has been passed to `request_stop`, this raises it."""
    with self._lock:
      if self._exc_info_to_raise:
        six.reraise(*self._exc_info_to_raise)


# Threads for the standard services. 
Example #5
Source File: coordinator.py    From keras-lambda with MIT License 5 votes vote down vote up
def raise_requested_exception(self):
    """If an exception has been passed to `request_stop`, this raises it."""
    with self._lock:
      if self._exc_info_to_raise:
        six.reraise(*self._exc_info_to_raise)


# Threads for the standard services.