In this guide we will cover two main cases:
- Ember specific library
- vendor library
The Ember library will assume that Ember has already ben loaded (higher in the loading order) and thus will assume it has access to the Ember API.
#!/bin/bash | |
watch -n 1 'bash memory_usage.sh' |
#include <future> | |
#include <iostream> | |
#include <thread> | |
#include <queue> | |
template <typename T> | |
class concurrent_queue { | |
private: | |
std::queue<T> _queue; | |
std::mutex _mutex; |