allora 0.0.3

Allora: Rust-native Enterprise Integration Patterns (EIP) with channels, routing, correlation, and adapters.
Documentation
// --- Core re-exports -------------------------------------------------

pub use allora_core::{
    adapter::{
        ensure_correlation, BaseAdapter, InboundAdapter, OutboundAdapter, OutboundDispatchResult,
    },
    channel::{
        Channel, ChannelRef, CorrelationSupport, DirectChannel, PollableChannel, QueueChannel,
        SubscribableChannel,
    },
    endpoint::{
        Endpoint, EndpointBuilder, EndpointSource, InMemoryEndpoint, InMemoryInOnlyEndpoint,
    },
    error::{Error, Result},
    message::{Exchange, Message, Payload},
    // ...other patterns as you add them
    processor::{ClosureProcessor, Processor},
    service::Service,
};
pub use allora_http::{HttpInboundAdapter, HttpOutboundAdapter, Mep as HttpInboundMep};

// --- Runtime facade ---------------------------------------------------

pub use allora_runtime::{dsl::build, runtime::Runtime};

// --- Macros -----------------------------------------------------------

pub use allora_macros::service;

// --- Service Descriptors ----------------------------------------------

// Re-export ServiceDescriptor and descriptor accessors from runtime (single source of truth).
pub use allora_runtime::inventory;
pub use allora_runtime::{all_service_descriptors, ServiceDescriptor};