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