Sign in Sign up
kretrod/lodestone Public
Branches
master
7 lines (7 loc) · 259 Bytes Raw
package io.netty.util.concurrent;
import java.util.concurrent.TimeUnit;
/** Stub: real netty provides the scheduler at runtime. */
public interface EventExecutor {
    Object schedule(Runnable command, long delay, TimeUnit unit);
    boolean inEventLoop();
}