Guest User

Untitled

a guest
Jul 18th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. package org.reactivestreams;
  2.  
  3. /**
  4. * A Processor represents a processing stage—which is both a {@link Subscriber}
  5. * and a {@link Publisher} and obeys the contracts of both.
  6. *
  7. * @param <T> the type of element signaled to the {@link Subscriber}
  8. * @param <R> the type of element signaled by the {@link Publisher}
  9. */
  10. public interface Processor<T, R> extends Subscriber<T>, Publisher<R> {
  11. }
Add Comment
Please, Sign In to add comment