1 #ifndef __FECONSUMER_OPTIONS_H__
2 #define __FECONSUMER_OPTIONS_H__
10 struct FEConsumerOptionsImpl;
33 bool get_worker_count(
int& value_out)
const;
34 bool get_enable_compression(
bool& value_out)
const;
35 bool get_high_watermark(
int& value_out)
const;
36 bool get_data_channel_heartbeat_interval(
int& value_out)
const;
37 bool get_data_channel_heartbeat_timeout(
int& value_out)
const;
38 bool get_data_channel_heartbeat_ttl(
int& value_out)
const;
39 bool get_mode(Mode& value_out)
const;
40 bool get_replay_host(std::string& value_out)
const;
42 friend struct FEConsumerOptionsImpl;
43 FEConsumerOptionsImpl* m_impl;
46 FDSFE_API std::ostream& operator<<(std::ostream& os,
const FEConsumerOptions& opt);
Definition: FEConsumerOptions.h:12