//! DXE Dispatch Service Definition.
//!
//! This module contains the [`DxeDispatch`] trait for services that expose
//! DXE driver dispatch capability. See [`DxeDispatch`] for the primary interface.
//!
//! ## License
//!
//! Copyright (c) Microsoft Corporation.
//!
//! SPDX-License-Identifier: Apache-2.0
//!
use automock;
use crateResult;
/// Service interface for DXE driver dispatch.
///
/// Provides access to the PI dispatcher for components that need to trigger
/// additional driver dispatch passes beyond the core's built-in dispatch loop
/// (e.g., to interleave controller connection with driver dispatch during boot).
///
/// Note: The DXE core already runs a PI dispatch loop automatically. This
/// service is only needed when a component must explicitly trigger a dispatch
/// pass at a specific point in its execution.