Guest User

Untitled

a guest
Jan 19th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. @EnableBinding(Processor.class)
  2. @EnableAutoConfiguration
  3. public static class UppercaseTransformer {
  4.  
  5. @StreamListener
  6. @Output(Processor.OUTPUT)
  7. public Flux<String> receive(@Input(Processor.INPUT) Flux<String> input) {
  8. return input.map(message -> message.toUpperCase());
  9. }
  10.  
  11. }
Add Comment
Please, Sign In to add comment