diff options
author | Maximilian Hils <git@maximilianhils.com> | 2013-12-15 02:43:16 +0100 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2013-12-15 02:43:16 +0100 |
commit | 605950bfdf221854b2b0fc4b875777891d90f34b (patch) | |
tree | 6506a79c8dd863332b4c0d54b634141939184284 /doc-src/scripting | |
parent | 224cd41dc268e7620d57ffb19dc5e7bc8c231f84 (diff) | |
download | mitmproxy-605950bfdf221854b2b0fc4b875777891d90f34b.tar.gz mitmproxy-605950bfdf221854b2b0fc4b875777891d90f34b.tar.bz2 mitmproxy-605950bfdf221854b2b0fc4b875777891d90f34b.zip |
add @concurrent decorator for inline scripts, fixes #176
Diffstat (limited to 'doc-src/scripting')
-rw-r--r-- | doc-src/scripting/inlinescripts.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc-src/scripting/inlinescripts.html b/doc-src/scripting/inlinescripts.html index c9e188fc..19ae89a1 100644 --- a/doc-src/scripting/inlinescripts.html +++ b/doc-src/scripting/inlinescripts.html @@ -123,6 +123,13 @@ using pydoc (which is installed with Python by default), like this: </pre> +## Running scripts in parallel + +We have a single flow primitive, so when a script is handling something, other requests block. +While that's a very desirable behaviour under some circumstances, scripts can be run threaded by using the <code>libmproxy.script.concurrent</code> decorator. + +$!example("examples/nonblocking.py")!$ + ## Running scripts on saved flows Sometimes, we want to run a script on __Flow__ objects that are already |