32 lines
657 B
C++
32 lines
657 B
C++
/*
|
|
* IXCobraBotConfig.h
|
|
* Author: Benjamin Sergeant
|
|
* Copyright (c) 2020 Machine Zone, Inc. All rights reserved.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include <limits>
|
|
#include <ixcobra/IXCobraConfig.h>
|
|
|
|
#ifdef max
|
|
#undef max
|
|
#endif
|
|
|
|
namespace ix
|
|
{
|
|
struct CobraBotConfig
|
|
{
|
|
CobraConfig cobraConfig;
|
|
std::string channel;
|
|
std::string filter;
|
|
std::string position = std::string("$");
|
|
bool enableHeartbeat = true;
|
|
int heartBeatTimeout = 60;
|
|
int runtime = -1;
|
|
int maxEventsPerMinute = std::numeric_limits<int>::max();
|
|
bool limitReceivedEvents = false;
|
|
};
|
|
} // namespace ix
|