proxy.core.work.fd.remote module#
proxy.py#
⚡⚡⚡ Fast, Lightweight, Pluggable, TLS interception capable proxy server focused on Network monitoring, controls & Application development, testing, debugging.
- copyright
2013-present by Abhinav Singh and contributors.
- license
BSD, see LICENSE for more details.
- class proxy.core.work.fd.remote.RemoteFdExecutor(*args: Any, **kwargs: Any)[source]#
Bases:
proxy.core.work.fd.fd.ThreadlessFdExecutor
[multiprocessing.connection.Connection
]A threadless executor implementation which receives work over a connection.
NOTE: RemoteExecutor uses
recv_handle
to accept file descriptors.TODO: Refactor and abstract
recv_handle
part so that a threaded remote executor can also accept work over a connection. Currently, remote executors must be running in a process.- _abc_impl = <_abc._abc_data object>#
- _loop: Optional[asyncio.AbstractEventLoop]#
- _upstream_conn_pool: Optional['UpstreamConnectionPool']#
- close_work_queue() None [source]#
Only called if
work_queue_fileno
returns an integer. If an fd is select-able for work queue, make sure to close the work queue fd now.
- property loop: Optional[asyncio.events.AbstractEventLoop]#
- receive_from_work_queue() bool [source]#
Work queue is ready to receive new work.
Receive it and call
work_on_tcp_conn
.Return True to tear down the loop.
- selector: Optional[selectors.DefaultSelector]#
- unfinished: Set['asyncio.Task[bool]']#