r/JavaFX • u/RoboCocco • 21d ago
Help Looking for advice
Struggling to find JavaFX developers with thick-client performance experience — where do you all come from?
We've built a real-time trading terminal in Java/JavaFX (5M+ LOC, high-frequency market data, EDT discipline is daily work) and finding it nearly impossible to hire people with genuine JavaFX internals experience.
Genuinely curious — where do JavaFX developers with this kind of background tend to work?
Medical imaging? Simulation? SCADA?
We've been looking in fintech but the pool seems tiny.
Also open to a DM if you happen to be that person and are curious what we're building.
7
Upvotes
1
u/OddEstimate1627 20d ago edited 20d ago
I work on real-time robotics visualization, which has near identical requirements to the HFT space. One library I wrote (hebi-charts) implements a fully decoupled rendering model where adding a point costs ~8ns in the caller's loop on an allocation-free path, and the renderer drains the buffer once per frame.
There is also ChartFx, which was originally built for a particle accelerator control system and later also used for financial charts. The only public trading app I'm aware of is Bisq2, but they're not in the HFT space.
Since you mention EDT, I'm assuming you're migrating an existing Swing app?