All platform features
Store & forward
The link will drop. Samples buffer locally and reconcile on reconnect, with original timestamps intact.

Buffering is the architecture rather than an error path: writes always go to a local durable queue and a separate process drains it when a link exists. There is no fast path to diverge from a slow one.
On reconnect, everything downstream is ordered by timestamp rather than by arrival, so replayed history lands where it belongs in a trend.
What you get
- Durable local queue, not a retry-on-failure path
- Original timestamps and quality preserved
- Timestamp-ordered reconciliation on reconnect
- Covered by dedicated resilience tests