package it.tdlight.reactiveapi.rsocket; import io.rsocket.Closeable; import it.tdlight.reactiveapi.ChannelCodec; import it.tdlight.reactiveapi.EventConsumer; import it.tdlight.reactiveapi.EventProducer; public interface RSocketChannelManager extends Closeable { EventConsumer registerConsumer(ChannelCodec channelCodec, String channelName); EventProducer registerProducer(ChannelCodec channelCodec, String channelName); }