eclipse-ee4j / glassfish-concurro

Eclipse Concurrō project
https://projects.eclipse.org/projects/ee4j.glassfish
Other
15 stars 19 forks source link

Implement Contextual Methods for Flow #83

Closed aubi closed 8 months ago

aubi commented 8 months ago

Addition of support for Flow introduced two new methods:

    public <T> Subscriber<T> contextualSubscriber(Subscriber<T> subscriber) 
    public <T, R> Processor<T, R> contextualProcessor(Processor<T, R> processor) 

This PR implements them.