sclass SteppableOnce { Runnable action; public bool step() { Runnable r = action; if (r != null) { action = null; r.run(); } false; } } static SteppableOnce steppableOnce(Runnable action) { }