danube-connect-core 0.5.0

Core SDK for building Danube connectors
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Utility modules for connector development.

/// Batching helpers for connector runtimes and adapters.
pub mod batching;
/// Health status helpers for implementing connector health checks.
pub mod health;
/// Lightweight serialization helpers for JSON and UTF-8 string payloads.
pub mod serialization;

// Re-export commonly used types
/// Re-export of the generic `Batcher` helper.
pub use batching::Batcher;
/// Re-exports for health monitoring helpers.
pub use health::{HealthChecker, HealthStatus};
/// Re-exports for serialization helper modules and error type.
pub use serialization::{json, string, SerializationError};