mod conversation_gate;
mod coordination;
mod large_message;
mod pull;
mod receipt_verify;
mod receive;
mod send;
mod send_mime;
mod services;
mod signals;
mod stream;
mod types;
pub use types::*;
mod pull_store;
pub use pull_store::As4PullEnqueueOutcome;
pub use pull_store::As4PullQueueOverflowPolicy;
pub use pull_store::{As4PullQueueSnapshot, As4PullStoreSnapshot, As4QueuedPullMessageSnapshot};
pub use pull_store::{As4PullStore, As4PullStoreLimits};
pub use conversation_gate::{As4ConversationOrderGate, ConversationGuard};
pub use coordination::{
As4TopologyCoordination, ConversationGuardHandle, ConversationOrderGate, ConversationTurnHandle,
};
pub use large_message::{
As4FragmentJoiner, As4FragmentJoinerLimits, As4JoinProgress, As4JoinedLargeMessage,
As4SplitFragmentOutput, send_sync_fragmented,
};
pub use pull::{
As4EnqueuePullWithReliabilityRequest, As4ReceivePullWithReliabilityRequest,
enqueue_pull_with_reliability, receive_pull_with_reliability,
};
pub use receipt_verify::{
As4NonRepudiation, As4ReceiptPolicy, As4SyncSignal, DEFAULT_MAX_RECEIPT_BYTES,
verify_sync_response,
};
#[cfg(feature = "testing")]
pub use receive::private as verifier_seal;
pub use receive::{
As4Ordered, As4ReceivePushAsyncFragmentAwareRequest, As4ReceivePushOrderedFragmentAwareRequest,
As4ReceivePushOrderedRequest, As4ReceivePushSyncFragmentAwareRequest,
As4ReceivePushSyncRequest, As4Verifier, As4WsSecVerifier, receive_push_ordered,
receive_push_ordered_fragment_aware, receive_push_with_dedup_async,
receive_push_with_dedup_async_fragment_aware, receive_push_with_dedup_sync,
receive_push_with_dedup_sync_fragment_aware,
};
#[cfg(feature = "testing")]
pub use receive::{
InsecureBypassAs4Verifier, receive_push_with_dedup_async_with_custom_verifier,
receive_push_with_dedup_sync_with_custom_verifier,
};
pub use send::{
As4AdditionalPayload, As4SendPreparedRequest, As4SendRequest, send_async, send_async_prepared,
send_sync, send_sync_prepared,
};
pub use send_mime::{package_as_mime, package_as_mime_with_extra_attachments};
pub use signals::{
generate_error_signal, generate_pull_request, generate_receipt, generate_receipt_for_output,
generate_receipt_with_nri, generate_signed_receipt_for_output,
generate_signed_receipt_with_nri,
};
mod parser;
pub mod mime_packaging;
pub use mime_packaging::{
MimeAttachment, MimePackageBuilder, PayloadFilename, PayloadFilenameError,
};
pub mod pmode;
pub mod test_service;
#[cfg(all(feature = "testing", feature = "server"))]
pub mod mock_endpoint;
#[cfg(test)]
mod tests;