This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
stellar-stellar/infra/polling_manager/polling_manager_internal.h

23 lines
412 B
C

#pragma once
#ifdef __cplusplus
extern "C"
{
#endif
#include "stellar/polling_manager.h"
#define TOPIC_POLLING "POLLING"
#define MODULE_POLLING "POLLING"
struct stellar_polling_manager
{
struct stellar_module_manager *mod_mgr;
int polling_topic_id;
};
//TODO: expose this function to polling_manager.h
void stellar_polling_dispatch(struct stellar_polling_manager *polling_mgr);
#ifdef __cplusplus
}
#endif