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();
}