endurox-rs 0.1.334

Dev middleware utilities for Enduro/X projects (Rust bindings).
/// Opaque ATMI client identifier returned by `TpSvcInfo::cltid()`.
/// Pass it to `AtmiCtx::tpnotify()`.
pub type ClientId = crate::raw::CLIENTID;

/// Transaction identifier filled by `tpsuspend` and consumed by `tpresume`.
#[derive(Debug)]
pub struct TpTranId(pub(crate) crate::raw::TPTRANID);

impl TpTranId {
    /// # Safety
    /// Must be a valid TPTRANID previously populated by `tpsuspend`.
    pub(crate) unsafe fn from_raw(inner: crate::raw::TPTRANID) -> Self {
        TpTranId(inner)
    }
}

/// Opaque ATMI context handle returned by `tpgetctxt` / used by `tpsetctxt`.
/// Useful when migrating a context between threads (requires `ctx-send` feature).
#[derive(Debug, Copy, Clone)]
pub struct TpContext(pub(crate) crate::raw::TPCONTEXT_T);

impl TpContext {
    /// # Safety
    /// Must be a valid context handle obtained from `tpgetctxt`.
    pub(crate) unsafe fn from_raw(inner: crate::raw::TPCONTEXT_T) -> Self {
        TpContext(inner)
    }
}