feat(background): runner PTY B8 + boucle sink fermée + refactor point-2
Livre le lot backend B8 des tâches de fond : - infrastructure : runner de commandes concret (CommandBackgroundRunner) sur le port BackgroundTaskRunner, tail borné (bounded_tail/BoundedTail), éclatement du module background_task en sous-modules (mod/runner/tail, sink extrait de l'ancien background_task.rs). - application : nouveau module background exposant les cas d'usage SpawnBackgroundCommand, CancelBackgroundTask, RetryBackgroundTask et le port BackgroundCommandArchive. - domain : refactor point-2 de l'arbitrage Architect — sortie du trait BackgroundCommandArchive de la couche domaine vers application. - app-tauri : câblage runtime (commands, dto, state, lib) des commandes spawn/cancel/retry et de la boucle de complétion sink fermée en composition root. Build workspace + tests application/infrastructure verts (QA). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
22
crates/infrastructure/src/background_task/mod.rs
Normal file
22
crates/infrastructure/src/background_task/mod.rs
Normal file
@ -0,0 +1,22 @@
|
||||
//! First-class background task infrastructure.
|
||||
//!
|
||||
//! Three cohesive pieces close the B2→B8 loop:
|
||||
//!
|
||||
//! - [`sink`] — the durable [`BackgroundCompletionSink`], single writer between a
|
||||
//! runner completion and the ready-to-deliver signal (persist-before-signal).
|
||||
//! - [`tail`] — a UTF-8-safe bounded ring buffer for stdout/stderr tails.
|
||||
//! - [`runner`] — [`CommandBackgroundRunner`], the concrete
|
||||
//! [`BackgroundTaskRunner`](domain::ports::BackgroundTaskRunner) that spawns a
|
||||
//! command-backed task over a composed [`PtyPort`](domain::ports::PtyPort) and
|
||||
//! emits exactly one completion per task.
|
||||
|
||||
mod runner;
|
||||
mod sink;
|
||||
mod tail;
|
||||
|
||||
pub use runner::CommandBackgroundRunner;
|
||||
pub use sink::{
|
||||
start_background_ready_inbox_bridge, BackgroundCompletionSink, BackgroundCompletionSinkError,
|
||||
BackgroundCompletionSinkOutcome, BackgroundReadyInboxBridgeHandle, BackgroundTaskReadyToDeliver,
|
||||
};
|
||||
pub use tail::{bounded_tail, tail_cap_bytes, BoundedTail};
|
||||
308
crates/infrastructure/src/background_task/runner.rs
Normal file
308
crates/infrastructure/src/background_task/runner.rs
Normal file
@ -0,0 +1,308 @@
|
||||
//! [`CommandBackgroundRunner`] — the concrete command-backed background task
|
||||
//! runner (B8 sub-task 2).
|
||||
//!
|
||||
//! # Role
|
||||
//!
|
||||
//! This is the `impl` of the frozen [`BackgroundTaskRunner`] port that the
|
||||
//! composition root wires under the [`BackgroundCompletionSink`]. It spawns a
|
||||
//! command-backed task over a **composed** [`PtyPort`] (resolved by the project's
|
||||
//! `RemoteHost`, so local/SSH/WSL are transparent — Liskov) and, for each task,
|
||||
//! emits **exactly one** [`BackgroundTaskCompletion`] on the stream returned by
|
||||
//! [`subscribe_completions`](BackgroundTaskRunner::subscribe_completions).
|
||||
//!
|
||||
//! It writes **neither** the store **nor** the inbox: the sink is the single
|
||||
//! writer that persists the terminal state before signalling delivery
|
||||
//! (persist-before-signal). The runner's only outward effect is the completion
|
||||
//! event.
|
||||
//!
|
||||
//! # Lifecycle of one task
|
||||
//!
|
||||
//! `spawn` opens the PTY and starts a detached worker. The worker watches the
|
||||
//! PTY's output stream for EOF (natural process exit), a cancel notification, or
|
||||
//! the deadline, whichever comes first. It then snapshots the bounded output tail
|
||||
//! from the PTY scrollback, reaps the real exit status via
|
||||
//! [`PtyPort::kill`](domain::ports::PtyPort::kill), maps that to a terminal
|
||||
//! [`BackgroundTaskResult`], and sends the completion.
|
||||
//!
|
||||
//! # Output tail & the live tee
|
||||
//!
|
||||
//! A PTY **merges** stdout and stderr onto one stream, so the completion carries
|
||||
//! the merged output in `stdout_tail` and leaves `stderr_tail` empty. Exit
|
||||
//! detection reads the PTY's single-consumer output subscription; a *live tee*
|
||||
//! that re-subscribes the same PTY (to render it in an xterm cell) would supersede
|
||||
//! the runner's subscription and break EOF detection — teeing a running command
|
||||
//! therefore requires a multi-consumer PTY broadcast, which is out of scope here.
|
||||
|
||||
use std::collections::HashMap;
|
||||
use std::sync::atomic::{AtomicBool, Ordering};
|
||||
use std::sync::mpsc::{self, Receiver, Sender};
|
||||
use std::sync::{Arc, Mutex};
|
||||
|
||||
use async_trait::async_trait;
|
||||
|
||||
use application::BackgroundCommandArchive;
|
||||
use domain::ports::{
|
||||
BackgroundCompletionStream, BackgroundTaskCompletion, BackgroundTaskHandle,
|
||||
BackgroundTaskPortError, BackgroundTaskRunner, BackgroundTaskSpec, Clock, PtyHandle, PtyPort,
|
||||
SpawnSpec,
|
||||
};
|
||||
use domain::terminal::PtySize;
|
||||
use domain::{BackgroundTaskResult, TaskId};
|
||||
|
||||
use super::tail::{bounded_tail, tail_cap_bytes};
|
||||
|
||||
/// Default PTY geometry for a headless background command (no visible cell).
|
||||
const DEFAULT_SIZE: PtySize = PtySize { rows: 24, cols: 80 };
|
||||
|
||||
/// Why the worker's terminal wait resolved.
|
||||
enum WaitOutcome {
|
||||
/// The process exited on its own (stream hit EOF).
|
||||
Exited,
|
||||
/// A [`cancel`](BackgroundTaskRunner::cancel) was requested.
|
||||
Cancelled,
|
||||
/// The deadline elapsed before exit.
|
||||
Expired,
|
||||
}
|
||||
|
||||
/// Live control handles for one running task (kept in the registry).
|
||||
#[derive(Clone)]
|
||||
struct TaskControl {
|
||||
pty_handle: PtyHandle,
|
||||
cancel: Arc<tokio::sync::Notify>,
|
||||
cancelled: Arc<AtomicBool>,
|
||||
}
|
||||
|
||||
/// Command-backed [`BackgroundTaskRunner`] over a composed [`PtyPort`].
|
||||
pub struct CommandBackgroundRunner {
|
||||
pty: Arc<dyn PtyPort>,
|
||||
clock: Arc<dyn Clock>,
|
||||
completion_tx: Sender<BackgroundTaskCompletion>,
|
||||
completion_rx: Mutex<Option<Receiver<BackgroundTaskCompletion>>>,
|
||||
running: Arc<Mutex<HashMap<TaskId, TaskControl>>>,
|
||||
/// Retained command invocations, so [`BackgroundCommandArchive::spec_for`]
|
||||
/// can recover a task's command for retry.
|
||||
specs: Arc<Mutex<HashMap<TaskId, SpawnSpec>>>,
|
||||
}
|
||||
|
||||
impl CommandBackgroundRunner {
|
||||
/// Builds a runner over a composed PTY port and clock.
|
||||
#[must_use]
|
||||
pub fn new(pty: Arc<dyn PtyPort>, clock: Arc<dyn Clock>) -> Self {
|
||||
let (completion_tx, completion_rx) = mpsc::channel();
|
||||
Self {
|
||||
pty,
|
||||
clock,
|
||||
completion_tx,
|
||||
completion_rx: Mutex::new(Some(completion_rx)),
|
||||
running: Arc::new(Mutex::new(HashMap::new())),
|
||||
specs: Arc::new(Mutex::new(HashMap::new())),
|
||||
}
|
||||
}
|
||||
|
||||
fn now_ms(&self) -> u64 {
|
||||
u64::try_from(self.clock.now_millis().max(0)).unwrap_or(0)
|
||||
}
|
||||
|
||||
/// Detached worker driving one command to its single completion.
|
||||
#[allow(clippy::too_many_arguments)]
|
||||
async fn run_to_completion(
|
||||
pty: Arc<dyn PtyPort>,
|
||||
clock: Arc<dyn Clock>,
|
||||
completion_tx: Sender<BackgroundTaskCompletion>,
|
||||
running: Arc<Mutex<HashMap<TaskId, TaskControl>>>,
|
||||
task_id: TaskId,
|
||||
control: TaskControl,
|
||||
deadline_ms: Option<u64>,
|
||||
) {
|
||||
let outcome = Self::await_terminal(&pty, &control, deadline_ms, &clock).await;
|
||||
// A cancel that raced a natural EOF still wins: the user asked to cancel.
|
||||
let outcome = if control.cancelled.load(Ordering::SeqCst) {
|
||||
WaitOutcome::Cancelled
|
||||
} else {
|
||||
outcome
|
||||
};
|
||||
|
||||
// Snapshot the merged output tail *before* kill tears the session down.
|
||||
let tail = pty
|
||||
.scrollback(&control.pty_handle)
|
||||
.ok()
|
||||
.map(|bytes| bounded_tail(&bytes, tail_cap_bytes()))
|
||||
.filter(|s| !s.is_empty());
|
||||
|
||||
// Reap the real exit status (works for a natural exit and a forced kill).
|
||||
let exit_code = pty
|
||||
.kill(&control.pty_handle)
|
||||
.await
|
||||
.ok()
|
||||
.and_then(|status| status.code);
|
||||
|
||||
let finished_at_ms = u64::try_from(clock.now_millis().max(0)).unwrap_or(0);
|
||||
let result = match outcome {
|
||||
WaitOutcome::Cancelled => BackgroundTaskResult::Cancelled {
|
||||
finished_at_ms,
|
||||
reason: "cancelled by request".to_owned(),
|
||||
},
|
||||
WaitOutcome::Expired => BackgroundTaskResult::Expired {
|
||||
finished_at_ms,
|
||||
reason: "deadline elapsed before completion".to_owned(),
|
||||
},
|
||||
WaitOutcome::Exited => {
|
||||
if exit_code == Some(0) {
|
||||
BackgroundTaskResult::Success {
|
||||
finished_at_ms,
|
||||
exit_code,
|
||||
summary: "command completed successfully".to_owned(),
|
||||
stdout_tail: tail,
|
||||
stderr_tail: None,
|
||||
}
|
||||
} else {
|
||||
BackgroundTaskResult::Failure {
|
||||
finished_at_ms,
|
||||
exit_code,
|
||||
error: match exit_code {
|
||||
Some(code) => format!("command exited with code {code}"),
|
||||
None => "command terminated without an exit code".to_owned(),
|
||||
},
|
||||
stdout_tail: tail,
|
||||
stderr_tail: None,
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
running.lock().expect("runner registry poisoned").remove(&task_id);
|
||||
let _ = completion_tx.send(BackgroundTaskCompletion { task_id, result });
|
||||
}
|
||||
|
||||
/// Resolves when the process exits, is cancelled, or hits its deadline.
|
||||
async fn await_terminal(
|
||||
pty: &Arc<dyn PtyPort>,
|
||||
control: &TaskControl,
|
||||
deadline_ms: Option<u64>,
|
||||
clock: &Arc<dyn Clock>,
|
||||
) -> WaitOutcome {
|
||||
let eof = Self::wait_for_eof(Arc::clone(pty), control.pty_handle.clone());
|
||||
tokio::pin!(eof);
|
||||
|
||||
let sleep_ms = deadline_ms.map(|deadline| {
|
||||
let now = u64::try_from(clock.now_millis().max(0)).unwrap_or(0);
|
||||
deadline.saturating_sub(now)
|
||||
});
|
||||
|
||||
match sleep_ms {
|
||||
Some(ms) => tokio::select! {
|
||||
() = &mut eof => WaitOutcome::Exited,
|
||||
() = control.cancel.notified() => WaitOutcome::Cancelled,
|
||||
() = tokio::time::sleep(std::time::Duration::from_millis(ms)) => WaitOutcome::Expired,
|
||||
},
|
||||
None => tokio::select! {
|
||||
() = &mut eof => WaitOutcome::Exited,
|
||||
() = control.cancel.notified() => WaitOutcome::Cancelled,
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
/// Resolves when the PTY output stream ends (the process has exited).
|
||||
///
|
||||
/// The domain `OutputStream` is a blocking iterator, so it is drained on a
|
||||
/// blocking task and its bytes discarded — the persisted tail is read from the
|
||||
/// PTY scrollback instead, which the reader thread fills regardless of
|
||||
/// subscribers. If the handle is already unknown, resolves immediately so the
|
||||
/// worker proceeds to reap.
|
||||
async fn wait_for_eof(pty: Arc<dyn PtyPort>, handle: PtyHandle) {
|
||||
let Ok(stream) = pty.subscribe_output(&handle) else {
|
||||
return;
|
||||
};
|
||||
let _ = tokio::task::spawn_blocking(move || {
|
||||
for _chunk in stream {}
|
||||
})
|
||||
.await;
|
||||
}
|
||||
}
|
||||
|
||||
#[async_trait]
|
||||
impl BackgroundTaskRunner for CommandBackgroundRunner {
|
||||
async fn spawn(
|
||||
&self,
|
||||
spec: BackgroundTaskSpec,
|
||||
) -> Result<BackgroundTaskHandle, BackgroundTaskPortError> {
|
||||
let command = spec.command.clone().ok_or_else(|| {
|
||||
BackgroundTaskPortError::Runner(
|
||||
"command-backed runner requires a command spec".to_owned(),
|
||||
)
|
||||
})?;
|
||||
|
||||
let pty_handle = self
|
||||
.pty
|
||||
.spawn(command.clone(), DEFAULT_SIZE)
|
||||
.await
|
||||
.map_err(|e| BackgroundTaskPortError::Runner(format!("pty spawn failed: {e}")))?;
|
||||
|
||||
self.specs
|
||||
.lock()
|
||||
.expect("runner spec registry poisoned")
|
||||
.insert(spec.task_id, command);
|
||||
|
||||
let control = TaskControl {
|
||||
pty_handle,
|
||||
cancel: Arc::new(tokio::sync::Notify::new()),
|
||||
cancelled: Arc::new(AtomicBool::new(false)),
|
||||
};
|
||||
self.running
|
||||
.lock()
|
||||
.expect("runner registry poisoned")
|
||||
.insert(spec.task_id, control.clone());
|
||||
|
||||
tokio::spawn(Self::run_to_completion(
|
||||
Arc::clone(&self.pty),
|
||||
Arc::clone(&self.clock),
|
||||
self.completion_tx.clone(),
|
||||
Arc::clone(&self.running),
|
||||
spec.task_id,
|
||||
control,
|
||||
spec.deadline_ms,
|
||||
));
|
||||
|
||||
// Touch `now_ms` only to keep the clock wired for future scheduling; the
|
||||
// authoritative timestamps come from the worker at completion.
|
||||
let _ = self.now_ms();
|
||||
Ok(BackgroundTaskHandle {
|
||||
task_id: spec.task_id,
|
||||
})
|
||||
}
|
||||
|
||||
async fn cancel(&self, task_id: TaskId) -> Result<(), BackgroundTaskPortError> {
|
||||
let control = self
|
||||
.running
|
||||
.lock()
|
||||
.expect("runner registry poisoned")
|
||||
.get(&task_id)
|
||||
.cloned();
|
||||
// Unknown task ⇒ already terminal or never ours: cancellation is idempotent.
|
||||
if let Some(control) = control {
|
||||
control.cancelled.store(true, Ordering::SeqCst);
|
||||
control.cancel.notify_one();
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn subscribe_completions(&self) -> BackgroundCompletionStream {
|
||||
let rx = self
|
||||
.completion_rx
|
||||
.lock()
|
||||
.expect("runner completion receiver poisoned")
|
||||
.take()
|
||||
.expect("subscribe_completions must be called exactly once");
|
||||
Box::new(rx.into_iter())
|
||||
}
|
||||
}
|
||||
|
||||
impl BackgroundCommandArchive for CommandBackgroundRunner {
|
||||
fn spec_for(&self, task_id: TaskId) -> Option<SpawnSpec> {
|
||||
self.specs
|
||||
.lock()
|
||||
.expect("runner spec registry poisoned")
|
||||
.get(&task_id)
|
||||
.cloned()
|
||||
}
|
||||
}
|
||||
149
crates/infrastructure/src/background_task/tail.rs
Normal file
149
crates/infrastructure/src/background_task/tail.rs
Normal file
@ -0,0 +1,149 @@
|
||||
//! UTF-8-safe bounded output tail (B8 sub-task 1).
|
||||
//!
|
||||
//! A background command can print megabytes; the completion contract only keeps a
|
||||
//! bounded *tail* (the most recent bytes). [`BoundedTail`] is a byte ring buffer
|
||||
//! capped at construction; [`bounded_tail`] renders the retained bytes as a
|
||||
//! `String`, trimming any partial UTF-8 sequence at the front so a multi-byte
|
||||
//! character never gets sliced by the cap.
|
||||
|
||||
use std::collections::VecDeque;
|
||||
|
||||
use domain::background_task::BACKGROUND_TASK_OUTPUT_TAIL_MAX_BYTES;
|
||||
|
||||
/// Default tail cap when `IDEA_BG_TAIL_BYTES` is unset (8 KiB).
|
||||
const DEFAULT_TAIL_BYTES: usize = 8 * 1024;
|
||||
/// Floor so a hostile/typo'd env value can't disable the tail entirely.
|
||||
const MIN_TAIL_BYTES: usize = 1024;
|
||||
|
||||
/// Resolves the tail cap in bytes from `IDEA_BG_TAIL_BYTES`.
|
||||
///
|
||||
/// Defaults to 8 KiB, floored at 1 KiB, and clamped to the domain maximum
|
||||
/// ([`BACKGROUND_TASK_OUTPUT_TAIL_MAX_BYTES`], 16 KiB) so the persisted result
|
||||
/// always validates.
|
||||
#[must_use]
|
||||
pub fn tail_cap_bytes() -> usize {
|
||||
std::env::var("IDEA_BG_TAIL_BYTES")
|
||||
.ok()
|
||||
.and_then(|v| v.trim().parse::<usize>().ok())
|
||||
.unwrap_or(DEFAULT_TAIL_BYTES)
|
||||
.clamp(MIN_TAIL_BYTES, BACKGROUND_TASK_OUTPUT_TAIL_MAX_BYTES)
|
||||
}
|
||||
|
||||
/// A byte ring buffer that retains only the last `cap` bytes pushed into it.
|
||||
#[derive(Debug)]
|
||||
pub struct BoundedTail {
|
||||
buf: VecDeque<u8>,
|
||||
cap: usize,
|
||||
}
|
||||
|
||||
impl BoundedTail {
|
||||
/// Builds a tail retaining at most `cap` bytes (a `cap` of `0` retains
|
||||
/// nothing but never panics).
|
||||
#[must_use]
|
||||
pub fn with_cap(cap: usize) -> Self {
|
||||
Self {
|
||||
buf: VecDeque::new(),
|
||||
cap,
|
||||
}
|
||||
}
|
||||
|
||||
/// Appends a chunk, dropping the oldest bytes past the cap.
|
||||
pub fn push(&mut self, chunk: &[u8]) {
|
||||
if self.cap == 0 {
|
||||
return;
|
||||
}
|
||||
// If the incoming chunk alone exceeds the cap, only its tail can survive.
|
||||
let start = chunk.len().saturating_sub(self.cap);
|
||||
self.buf.extend(&chunk[start..]);
|
||||
let overflow = self.buf.len().saturating_sub(self.cap);
|
||||
if overflow > 0 {
|
||||
self.buf.drain(0..overflow);
|
||||
}
|
||||
}
|
||||
|
||||
/// Returns whether any byte is retained.
|
||||
#[must_use]
|
||||
pub fn is_empty(&self) -> bool {
|
||||
self.buf.is_empty()
|
||||
}
|
||||
|
||||
/// Renders the retained bytes as a UTF-8 string, dropping a leading partial
|
||||
/// multi-byte sequence left dangling by the cap. Returns `None` when empty.
|
||||
#[must_use]
|
||||
pub fn to_tail_string(&self) -> Option<String> {
|
||||
if self.buf.is_empty() {
|
||||
return None;
|
||||
}
|
||||
let bytes: Vec<u8> = self.buf.iter().copied().collect();
|
||||
Some(bounded_tail(&bytes, self.cap))
|
||||
}
|
||||
}
|
||||
|
||||
/// Renders the last `cap` bytes of `bytes` as a lossless-at-the-boundary
|
||||
/// `String`.
|
||||
///
|
||||
/// The slice is taken from the end, then any partial UTF-8 sequence at the *front*
|
||||
/// (a continuation byte with no lead byte, because the cap cut mid-character) is
|
||||
/// skipped so the result is valid UTF-8 without replacement characters at the
|
||||
/// seam. Invalid bytes in the interior are still replaced lossily.
|
||||
#[must_use]
|
||||
pub fn bounded_tail(bytes: &[u8], cap: usize) -> String {
|
||||
let start = bytes.len().saturating_sub(cap);
|
||||
let mut slice = &bytes[start..];
|
||||
// Only realign when we actually truncated the front (start > 0): otherwise a
|
||||
// legitimately leading continuation byte is just invalid input, handled below.
|
||||
if start > 0 {
|
||||
let mut skip = 0;
|
||||
while skip < slice.len() && is_utf8_continuation(slice[skip]) {
|
||||
skip += 1;
|
||||
}
|
||||
slice = &slice[skip..];
|
||||
}
|
||||
String::from_utf8_lossy(slice).into_owned()
|
||||
}
|
||||
|
||||
/// Whether `b` is a UTF-8 continuation byte (`10xxxxxx`).
|
||||
const fn is_utf8_continuation(b: u8) -> bool {
|
||||
b & 0b1100_0000 == 0b1000_0000
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
|
||||
#[test]
|
||||
fn keeps_only_the_last_cap_bytes() {
|
||||
let mut tail = BoundedTail::with_cap(4);
|
||||
tail.push(b"abcdef");
|
||||
assert_eq!(tail.to_tail_string().as_deref(), Some("cdef"));
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn push_bigger_than_cap_keeps_tail() {
|
||||
let mut tail = BoundedTail::with_cap(3);
|
||||
tail.push(b"0123456789");
|
||||
assert_eq!(tail.to_tail_string().as_deref(), Some("789"));
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn empty_tail_is_none() {
|
||||
let tail = BoundedTail::with_cap(8);
|
||||
assert!(tail.is_empty());
|
||||
assert_eq!(tail.to_tail_string(), None);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn cut_multibyte_char_is_trimmed_at_front() {
|
||||
// "é" is 0xC3 0xA9. Cap of 1 would keep only the trailing 0xA9 (a lone
|
||||
// continuation byte); it must be dropped, yielding an empty string.
|
||||
let bytes = "é".as_bytes();
|
||||
assert_eq!(bounded_tail(bytes, 1), "");
|
||||
// Cap of 2 keeps the whole character.
|
||||
assert_eq!(bounded_tail(bytes, 2), "é");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn interior_is_preserved() {
|
||||
assert_eq!(bounded_tail("héllo".as_bytes(), 100), "héllo");
|
||||
}
|
||||
}
|
||||
@ -38,9 +38,9 @@ pub mod store;
|
||||
pub mod timeparse;
|
||||
|
||||
pub use background_task::{
|
||||
start_background_ready_inbox_bridge, BackgroundCompletionSink, BackgroundCompletionSinkError,
|
||||
BackgroundCompletionSinkOutcome, BackgroundReadyInboxBridgeHandle,
|
||||
BackgroundTaskReadyToDeliver,
|
||||
bounded_tail, start_background_ready_inbox_bridge, tail_cap_bytes, BackgroundCompletionSink,
|
||||
BackgroundCompletionSinkError, BackgroundCompletionSinkOutcome, BackgroundReadyInboxBridgeHandle,
|
||||
BackgroundTaskReadyToDeliver, BoundedTail, CommandBackgroundRunner,
|
||||
};
|
||||
pub use clock::SystemClock;
|
||||
pub use conversation::InMemoryConversationRegistry;
|
||||
|
||||
Reference in New Issue
Block a user