From f935c48d47e944643ee666b6e0a28f82bf472d14 Mon Sep 17 00:00:00 2001 From: Brendan Jackman Date: Wed, 6 Dec 2017 14:46:23 +0000 Subject: [PATCH] framework/execution: Add basic docstring for Runner class --- wa/framework/execution.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wa/framework/execution.py b/wa/framework/execution.py index 72af62b0..e278c80c 100644 --- a/wa/framework/execution.py +++ b/wa/framework/execution.py @@ -353,7 +353,11 @@ class Executor(object): class Runner(object): """ + Triggers running jobs and processing results + Takes pre-initialized ExcecutionContext and ProcessorManager. Handles + actually running the jobs, and triggers the ProcessorManager to handle + processing job and run results. """ def __init__(self, context, pm):