1. 27 Mar, 2023 8 commits
  2. 26 Mar, 2023 10 commits
  3. 25 Mar, 2023 3 commits
  4. 24 Mar, 2023 8 commits
  5. 23 Mar, 2023 3 commits
  6. 22 Mar, 2023 5 commits
  7. 21 Mar, 2023 3 commits
    • 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
    • Morph's avatar
      bounded_threadsafe_queue: Add TryPush · 15d57319
      Morph authored
      15d57319
    • Morph's avatar
      logging: Make use of bounded queue · f28ca536
      Morph authored
      f28ca536