Sweep 19 Sep 2026 · 02:36Z Build v2.1.278 500 read Stable v2.1.267 Latest v2.1.278 Next v2.1.278 Feeds RSS JSON llms.txt Unofficial
Claude Code v2.1.277 ·

Transport allocator adds backpressure and refusal callbacks

The data-transport layer gained backpressure detection and refusal callbacks instead of always resending

TierUnder the hoodhow much it should matter to you
Useful2my rating, 1 to 5
Signal2worth watching, 1 to 5
AreaElsewherewhat it touches
KindInternal Changesin v2.1.277,
Under the hood

The data-transport layer gained backpressure detection and refusal callbacks instead of always resending

What

The internal channel/frame allocator that manages data transport (its allocate, transmit, and free operations) now supports:

  • an onRefused callback that can run per allocation
  • backpressure detection (isBackedUp) checked before resending data
  • tracking of orphaned sequences when an allocation is freed
  • a resend flag on transmit, instead of the previous model of always resending
Why

This makes the underlying transport more resilient: it can now detect when it's sending faster than the other side can handle (backpressure) and react to refused sends, rather than blindly resending every time.

See this entry in the whole of v2.1.277 →