pub fn get_lock_manager() -> &'static LockManagerExpand description
Returns the global singleton instance of the LockManager
This function provides access to the application-wide lock manager that coordinates concurrent access to workflows. It uses lazy initialization to create the manager on first access.
§Returns
A static reference to the global LockManager instance
§Examples
use aimx::aim::get_lock_manager;
let lock_manager = get_lock_manager();
// Use the lock manager for workflow coordination