restate-sdk 0.10.0

Restate SDK for Rust
Documentation
1
2
3
4
5
6
7
8
9
use crate::endpoint::ContextInternal;
use restate_sdk_shared_core::NotificationHandle;

// Sealed future trait, used by select statement
#[doc(hidden)]
pub trait SealedDurableFuture {
    fn inner_context(&self) -> ContextInternal;
    fn handle(&self) -> NotificationHandle;
}