pipeline-rpc 0.1.2

Internal: RPC layer for roxid pipeline service - not intended for direct use
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod api;
pub mod error;
pub mod handlers;

pub use api::RpcServer;
pub use error::{RpcError, RpcResult};
pub use handlers::{PipelineHandler, UserHandler};

// Re-export types needed by clients
pub use pipeline_service;
pub use pipeline_service::pipeline::{ExecutionEvent, Pipeline, StepStatus};