previa-engine 1.0.0-alpha.30

Motor de execucao de pipelines da plataforma Previa.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub(crate) mod cancel;
pub mod engine;
pub(crate) mod http;
pub mod http_step;
pub(crate) mod logging;

pub use engine::{
    execute_pipeline, execute_pipeline_from_step_with_client_runtime_hooks,
    execute_pipeline_with_client, execute_pipeline_with_client_hooks,
    execute_pipeline_with_client_runtime_request_gate, execute_pipeline_with_hooks,
    execute_pipeline_with_runtime_hooks, execute_pipeline_with_runtime_request_gate,
    execute_pipeline_with_specs_hooks,
};
pub use http_step::{
    PreparedHttpStep, StartedHttpStep, complete_started_http_step_with_hook, prepare_http_step,
    send_prepared_http_step, send_prepared_http_step_with_hooks,
    start_prepared_http_step_with_hooks,
};