pgtask-postgres 0.1.0

PostgreSQL storage implementation for pgtask
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![doc = "Postgres storage implementation for pgtask."]

mod store;

pub use pgtask_core::{
    STORAGE_PROTOCOL_MAX_VERSION, STORAGE_PROTOCOL_MIN_VERSION, STORAGE_PROTOCOL_RANGE, STORAGE_PROTOCOL_VERSION,
    StorageProtocolRange,
};
pub use store::{
    Notification, PostgresError, QueueDemand, ReadyListener, ResultWait, ResultWaitRequest, SignalWait,
    SignalWaitRequest, SpawnRequest, Store, StoreConfig, TaskResultWait,
};