Skip to content
Snippets Groups Projects
  1. Dec 04, 2015
  2. Dec 03, 2015
  3. Nov 16, 2015
  4. Jun 17, 2015
  5. 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
  6. Mar 28, 2015
  7. Mar 27, 2015
  8. Mar 03, 2015
  9. 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
  10. Feb 26, 2015
  11. Feb 25, 2015
  12. Feb 24, 2015
  13. Feb 23, 2015
  14. Feb 21, 2015
  15. Feb 20, 2015
  16. Feb 16, 2015
  17. Feb 14, 2015
  18. Feb 09, 2015
  19. Feb 05, 2015
  20. Jan 30, 2015
Loading