MADARA  3.2.3
WaitSettings.cpp
Go to the documentation of this file.
1 #include "WaitSettings.h"
2 
3 namespace madara
4 {
5  namespace knowledge
6  {
7  /* Constructor Args:
8  bool t_delay_sending_modifieds,
9  bool t_treat_globals_as_locals,
10  bool t_signal_updates,
11  bool t_always_overwrite,
12  bool t_always_expand,
13  bool t_track_local_changes,
14  std::string t_pre_print_statement,
15  std::string t_post_print_statement,
16  double t_poll_frequency,
17  double t_max_wait_time
18  */
19 
20  const WaitSettings WaitSettings::DEFAULT (false, false, true, false, true, false, "", "", 0.100, -1.0);
21  const WaitSettings WaitSettings::NO_EXPAND (false, false, true, false, false, false, "", "", 0.100, -1.0);
22  const WaitSettings WaitSettings::DELAY (true, false, true, false, true, false, "", "", 0.100, -1.0);
23  const WaitSettings WaitSettings::DELAY_NO_EXPAND(true, false, true, false, false, false, "", "", 0.100, -1.0);
24  }
25 }
static const WaitSettings DELAY_NO_EXPAND
Settings to delay sending modifieds, and not expand variables.
Definition: WaitSettings.h:37
Provides functions and classes for the distributed knowledge base.
static const WaitSettings DELAY
Settings to delay sending modifieds, but do expand variables.
Definition: WaitSettings.h:34
static const WaitSettings NO_EXPAND
Settings to immediately send modifieds, and not expand variables.
Definition: WaitSettings.h:31
Copyright (c) 2015 Carnegie Mellon University.
static const WaitSettings DEFAULT
Settings to immediately send modifieds, but do expand variables.
Definition: WaitSettings.h:28