grafbase_sdk/host_io/
mod.rs

1//! # Host IO modules.
2//!
3//! This module contains IO modules, providing IO operations to the guest handled by the host runtime.
4//! The interfaces are blocking from the guest's perspective, but the host runtime executes the IO asynchronously without
5//! blocking the host thread when guest is waiting for IO.
6
7pub mod cache;
8pub mod event_queue;
9pub mod grpc;
10pub mod http;
11pub mod kafka;
12pub mod logger;
13pub mod nats;
14pub mod postgres;