1. 28 Mar, 2023 1 commit
  2. 27 Mar, 2023 9 commits
  3. 26 Mar, 2023 10 commits
  4. 25 Mar, 2023 3 commits
  5. 24 Mar, 2023 8 commits
  6. 23 Mar, 2023 3 commits
  7. 22 Mar, 2023 5 commits
  8. 21 Mar, 2023 1 commit
    • Morph's avatar
      bounded_threadsafe_queue: Deduplicate and add PushModes · 407dc917
      Morph authored
      Adds the PushModes Try and Wait to allow producers to specify how they want to push their data to the queue if the queue is full.
      If the queue is full:
      - Try will fail to push to the queue, returning false. Try only returns true if it successfully pushes to the queue. This may result in items not being pushed into the queue.
      - Wait will wait until a slot is available to push to the queue, resulting in potential for deadlock if a consumer is not running.
      407dc917