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