springql-core-release-test 1.0.0-a6

SpringQL: Open-source stream processor for IoT devices and in-vehicle computers
Documentation
// This file is part of https://github.com/SpringQL/SpringQL which is licensed under MIT OR Apache-2.0. See file LICENSE-MIT or LICENSE-APACHE for full license details.

pub mod error;

mod spring_config;
mod spring_pipeline;
mod spring_sink_row;
mod spring_source_row;

pub use crate::{
    api::{
        error::{Result, SpringError},
        spring_config::*,
        spring_pipeline::SpringPipeline,
        spring_sink_row::SpringSinkRow,
        spring_source_row::{SpringSourceRow, SpringSourceRowBuilder},
        SpringConfig,
    },
    stream_engine::{
        time::{SpringEventDuration, SpringTimestamp},
        SpringValue,
    },
};