camel-component-jms 0.5.6

JMS component for rust-camel via Java bridge
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod component;
pub mod config;
pub mod consumer;
pub mod headers;
pub mod producer;

pub use camel_bridge::process::BrokerType;
pub use component::JmsComponent;
pub use config::JmsConfig;
pub use config::default_bridge_cache_dir;

/// Version of the Java bridge binary this crate is compatible with.
pub const BRIDGE_VERSION: &str = "0.1.1";

pub mod proto {
    tonic::include_proto!("jms_bridge");
}