mirror of https://github.com/yandex/odyssey.git
20 lines
322 B
C
20 lines
322 B
C
#ifndef OD_PERIODIC_H
|
|
#define OD_PERIODIC_H
|
|
|
|
/*
|
|
* Odissey.
|
|
*
|
|
* Advanced PostgreSQL connection pooler.
|
|
*/
|
|
|
|
typedef struct od_periodic_t od_periodic_t;
|
|
|
|
struct od_periodic_t {
|
|
od_system_t *system;
|
|
};
|
|
|
|
int od_periodic_init(od_periodic_t*, od_system_t*);
|
|
int od_periodic_start(od_periodic_t*);
|
|
|
|
#endif /* OD_PERIODIC_H */
|