package bluej.utility.javafx;

import threadchecker.OnThread;
import threadchecker.Tag;


| Equivalent to Consumer, but clearer (including to plugin) that it runs on FX thread | @FunctionalInterface @OnThread(Tag.FXPlatform) public interface FXPlatformConsumer<T>{ public void accept(T t); }

.   accept




9 neLoCode + 1 LoComm