Fjage modernization - #409
Draft
notthetup wants to merge 17 commits into
Draft
Conversation
…g in MasterContainer
… interrupt status fix(websocket): ensure outThread is not null before closing
Replace the fire-and-forget sendString() write path in both WebSocket connectors with a per-connection WebSocketWriter that: - keeps exactly one async write in flight per endpoint (Jetty's limit), draining the next frame only after the prior callback fires, so frames are no longer dropped on WritePendingException or delivered out of order; - bounds the outbound queue (backpressure) and disconnects a client whose backlog overflows; - arms a per-write watchdog, only while a send is in flight, to reap a peer that has stopped draining its socket. None of these block the shared OutputThread, so one slow/dead client can no longer stall delivery to others. Removes the now-redundant Thread.sleep(10) pacing from both output loops. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
notthetup
force-pushed
the
container-improvements-3
branch
from
June 15, 2026 06:18
90d7a5e to
3271787
Compare
…igitage potential race condition
- BlockingByteQueue: use notifyAll() and add awaitEmpty(timeout) - PseudoOutputStream: expose awaitEmpty(timeout) - TcpHubConnector: drain via awaitEmpty instead of polling sleep - SerialPortConnector: guard against concurrent close() nulling com Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
notthetup
force-pushed
the
fjage-modernization
branch
from
June 15, 2026 06:18
319a95f to
8176a6d
Compare
notthetup
force-pushed
the
container-improvements-3
branch
4 times, most recently
from
July 8, 2026 11:54
ab6bfbd to
044fd57
Compare
notthetup
force-pushed
the
container-improvements-3
branch
2 times, most recently
from
July 21, 2026 05:42
f28f7a1 to
2bd312a
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.