MCPcopy Index your code
hub / github.com/mitmproxy/mitmproxy / resume

Method resume

mitmproxy/flow.py:265–273  ·  view source on GitHub ↗

Continue with the flow – called after an intercept().

(self)

Source from the content-addressed store, hash-verified

263 await self._resume_event.wait()
264
265 def resume(self):
266 """
267 Continue with the flow – called after an intercept().
268 """
269 if not self.intercepted:
270 return
271 self.intercepted = False
272 if self._resume_event is not None:
273 self._resume_event.set()
274
275 @property
276 def timestamp_start(self) -> float:

Callers 7

test_killMethod · 0.45
test_resumeMethod · 0.45
test_wait_for_resumeMethod · 0.45
quickactionsFunction · 0.45
onKeyDownFunction · 0.45

Calls 1

setMethod · 0.45

Tested by 4

test_killMethod · 0.36
test_resumeMethod · 0.36
test_wait_for_resumeMethod · 0.36