Skip to content
Snippets Groups Projects
  1. Dec 03, 2015
  2. Apr 08, 2015
    • Ramin Yaghoubzadeh Torky's avatar
      C++: batch updates · 75e61345
      Ramin Yaghoubzadeh Torky authored
      Use with Locker, possible in a dedicated stack frame, like this:
      // ... code ...
      { // open stack frame
      	Locker locker(iu->payload());
      	iu->payload()["a"] = "string";
      	iu->payload()["b"] = "simultaneouslySentString";
      } // close stack frame, sending the update
      75e61345
  3. Mar 03, 2015
  4. Feb 27, 2015
    • Ramin Yaghoubzadeh Torky's avatar
      C++: iteration over deep proxies · f4393e75
      Ramin Yaghoubzadeh Torky authored
      Address mode must be selected explicitly using as_map/as_list, like so:
        for (auto value: iu->payload()["listItem"].as_list()) { .... }
        for (auto kv_pair: iu->payload()["mapItem"].as_map()) { .... }
      Generic size() function (reports 0 for non-structured types)
      f4393e75
  5. Feb 26, 2015
  6. Feb 25, 2015
  7. Feb 23, 2015
  8. Feb 21, 2015
  9. Feb 20, 2015
  10. Feb 16, 2015
  11. Feb 14, 2015
  12. Feb 09, 2015
  13. Feb 05, 2015
  14. Jan 30, 2015
Loading