package bluej.utility.javafx; import threadchecker.OnThread; import threadchecker.Tag;
| Equivalent to BiConsumer, but clearer (including to plugin) that it runs on FX thread | @FunctionalInterface public interface FXBiConsumer<T, U>{ @OnThread(Tag.FX) public void accept(T t, U u); }