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