#[derive(ArconState)]
{
// Attributes available to this derive:
#[ephemeral]
#[table]
}
Expand description
Derive macro for declaring an ArconState
use arcon::prelude::*;
#[derive(ArconState)]
pub struct StreamingState<B: Backend> {
values: LazyValue<u64, B>,
}