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