package it.tdlight.reactiveapi; import org.jetbrains.annotations.NotNull; import reactor.core.publisher.Flux; public interface EventConsumer { boolean isQuickResponse(); ChannelCodec getChannelCodec(); String getChannelName(); Flux> consumeMessages(@NotNull String subGroupId); }