blob: 2573aebe51e0fa7a449a0698cc2a2529f7755cad [file] [log] [blame]
package component.api;
import org.reactivestreams.Publisher;
import org.reactivestreams.Subscriber;
public interface MComponent {
<S> Publisher<S> from(String destination, Class<? extends S> type);
<S> Subscriber<S> to(String destination, Class<? extends S> type);
}