azure_data_cosmos_driver 0.2.0

Core implementation layer for Azure Cosmos DB - provides transport, routing, and protocol handling for cross-language SDK reuse
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

//! ECS-inspired operation pipeline for Cosmos DB operations.
//!
//! This module implements the data-oriented programming (DOP) pipeline described
//! in the Transport Pipeline Spec. State is decomposed into focused component types
//! and pipeline stages are pure functions over those components.

pub(crate) mod components;
pub(crate) mod operation_pipeline;
pub(crate) mod retry_evaluation;