Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions docs/changes/newsfragments/8116.new
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Added experimental ``qcodes.measure_v2`` package — a parallel measurement API
that decouples plan description from execution. Plans are Python generators
yielding typed messages (``Set``, ``Read``, ``Sleep``, ``Emit``, ``OpenRun``,
``CloseRun``); an engine drives them on a dedicated worker thread and
publishes events to pluggable sinks. Enables non-blocking measurement
submission, mid-flight cancellation with guaranteed cleanup via plan
``try/finally`` blocks, and live data consumption via custom sinks.
The public surface is ``qc.measure_v2.scan(...)`` and the engine /
``RunHandle`` types for advanced use; the SQLite sink reuses the existing
``DataSaver`` infrastructure. This package is experimental and its API
may change in subsequent releases. See ``src/qcodes/measure_v2/DESIGN.md``
for the architecture document.
Loading
Loading