shepherd-rs 0.2.0

Shepherd is a resilient, non-blocking orchestrator that persistently transforms and delivers data—built for remote, compute-heavy workloads.
Documentation
1
2
3
4
5
6
7
8
//! # A module for managing transformation work, and management of workers
//!
//! This module defines components related to worker instances and their
//! management. It includes traits and utilities for creating and managing
//! workers.

pub mod worker_instance;
pub mod worker_manager;