Skip to main content

running_process/client/
mod.rs

1//! Synchronous IPC client for the running-process daemon.
2//!
3//! Wave 4 of #165: absorbed from the former `running-process-client`
4//! crate. Re-exports preserved at the top level so downstream code that
5//! previously imported from `running_process_client::*` keeps working
6//! when it switches to `running_process::client::*`.
7
8#[allow(clippy::module_inception)]
9pub mod client;
10pub mod paths;
11pub mod pipe_session;
12pub mod pty_session;
13pub mod telemetry;
14
15pub use client::{
16    connect_or_start, daemonize_command, launch_detached, ClientError, DaemonClient,
17    SpawnCommandRequest, SpawnedDaemon,
18};
19pub use pipe_session::{PipeSpawnRequest, PipeStreamAttachment, SpawnedPipeSession};
20pub use pty_session::{AttachError, PtyAttachment, PtySpawnRequest, SpawnedPtySession};
21pub use telemetry::{
22    SessionTeeBackpressure, SessionTeeFileMode, SessionTeeFileRequest, SessionTeeKind,
23    SessionTeeStatus, SessionTeeStream,
24};