1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! JMS component for rust-camel — Apache ActiveMQ / Artemis bridge via Tower services.
//!
//! # Behavior changes (Phase B hardening)
//!
//! - **No automatic resend on transport errors** (breaking): Previously a send
//! transport error triggered a channel refresh + automatic retry. The retry
//! could duplicate non-idempotent writes. Now the channel is refreshed but
//! the original error is returned to the caller. Callers that want retry
//! semantics must implement it at the route level.
//! - **max_bridges enforcement is now race-free**: Concurrent `get_or_create_slot`
//! calls are serialized during admission to prevent exceeding the configured
//! limit.
//! - **Broker URLs are redacted in logs**: Userinfo (`user:pass@`) is replaced
//! with `***@` before logging.
pub use JmsBundle;
pub use BrokerType;
pub use ;
pub use default_bridge_cache_dir;
pub use ;
/// Version of the Java bridge binary this crate is compatible with.
pub const BRIDGE_VERSION: &str = "0.2.1";