mirror of
https://github.com/privacore/open-source-search-engine.git
synced 2025-02-02 03:38:43 -05:00
16 lines
295 B
C++
16 lines
295 B
C++
#ifndef INSTANCE_INFO_EXCHANGE_H_
|
|
#define INSTANCE_INFO_EXCHANGE_H_
|
|
|
|
namespace InstanceInfoExchange {
|
|
|
|
bool initialize();
|
|
void finalize();
|
|
|
|
//Tell the exchange that this info is still alive and kicking.
|
|
// 'forHowLong' is relative time in milliseconds
|
|
void weAreAlive();
|
|
|
|
} //namespace
|
|
|
|
#endif
|