Skip to main content

dynamo_runtime/
transports.rs

1// SPDX-FileCopyrightText: Copyright (c) 2024-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2// SPDX-License-Identifier: Apache-2.0
3
4//! The Transports module hosts all the network communication stacks used for talking
5//! to services or moving data around the network.
6//!
7//! These are the low-level building blocks for the distributed system.
8
9pub mod etcd;
10pub mod event_plane;
11pub mod nats;
12pub mod tcp;
13mod utils;
14pub mod zmq;