package io.vertx.core.eventbus.impl.clustered;
import io.vertx.core.eventbus.impl.HandlerHolder;
import io.vertx.core.eventbus.impl.HandlerRegistration;
import io.vertx.core.impl.ContextInternal;
public class ClusteredHandlerHolder<T> extends HandlerHolder<T> {
private final long seq;
public ClusteredHandlerHolder(HandlerRegistration<T> handler, boolean replyHandler, boolean localOnly, ContextInternal context, long seq) {
super(handler, replyHandler, localOnly, context);
this.seq = seq;
}
@Override
public long getSeq() {
return seq;
}
}