tdauth / cpp-futures-promises

Advanced futures and promises in C++.
GNU General Public License v3.0
16 stars 0 forks source link

Use linked list of callbacks instead of std::vector<Callback> #24

Open tdauth opened 5 years ago

tdauth commented 5 years ago

Each link links to the previous callback. This improves the performance of adding a new callback with onComplete.