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 @OnThread(Tag.FXPlatform) public interface FXPlatformBiConsumer<T, U>{ public void accept(T t, U u); }