![Spring 5.0 Projects](https://wfqqreader-1252317822.image.myqcloud.com/cover/848/36698848/b_36698848.jpg)
上QQ阅读APP看书,第一时间看更新
Processor rules
Processor is described with the following interface definition:
public interface Processor<T, R> extends Subscriber<T>, Publisher<R> {
}
It has just two rules. The first rule talks about the contract that must be followed by both Subscriber and Publisher , while the second rule is intended to handle the error situation, either recover or propagate to Subscriber.