Given a work plan, a database, and some query bindings, run the
work plan and return the results.
(defn run-work-plan "Given a work plan, a database, and some query bindings, run the work plan and return the results." [work-plan database query-bindings] (validate-work-plan work-plan database) (evaluate-soft-work-set (:work-plan work-plan) database query-bindings))
Comments top
No comments for run-work-plan. Log in to add a comment.