tito 0.4.8

Database layer on TiKV with indexing, relationships, transactions, and built-in transactional outbox with partitioned scheduled pub/sub with consumer groups
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, Default, Serialize, Deserialize)]
#[serde(default)]
pub struct TitoEvent {
    pub id: String,
    pub name: String,
    pub payload: String,
    pub created_at: i64,
    pub status: String,
    pub event_key: String,
    pub event_data: String,
    pub scheduled_at: i64,
    pub processed_at: i64,
    pub retry_count: u32,
    pub max_retries: u32,
    pub error: Option<String>,
}