MCPcopy Create free account
hub / github.com/agenticsorg/lean-agentic / Awaitable

Class Awaitable

runtime/src/orchestration.rs:80–82  ·  view source on GitHub ↗

3. Await: Future wrapper

Source from the content-addressed store, hash-verified

78
79/// 3. Await: Future wrapper
80pub struct Awaitable<T> {
81 receiver: oneshot::Receiver<T>,
82}
83
84impl<T> Future for Awaitable<T> {
85 type Output = Result<T>;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected