Skip to main content

pgtask_postgres/
lib.rs

1#![doc = "Postgres storage implementation for pgtask."]
2
3mod store;
4
5pub use pgtask_core::{
6    STORAGE_PROTOCOL_MAX_VERSION, STORAGE_PROTOCOL_MIN_VERSION, STORAGE_PROTOCOL_RANGE, STORAGE_PROTOCOL_VERSION,
7    StorageProtocolRange,
8};
9pub use store::{
10    Notification, PostgresError, QueueDemand, ReadyListener, ResultWait, ResultWaitRequest, SignalWait,
11    SignalWaitRequest, SpawnRequest, Store, StoreConfig, TaskResultWait,
12};