Receiver
log.Receiver(queue)Create a receiver for multiprocessing logging.
Essentially a listener.
Parameters
| Name | Type | Description | Default |
|---|---|---|---|
| queue | object | A queue for putting the messages in. This has to be a designated multiprocessing object. | required |
Methods
| Name | Description |
|---|---|
| add_handler | Add a handler to the receiver. |
| close | Close the receiver. |
| close_handlers | Close all associated handlers. |
| get | Get something from the pipeline. |
| start | Start the receiver. |