1. 04 7月, 2016 1 次提交
  2. 30 6月, 2016 1 次提交
  3. 20 6月, 2016 2 次提交
  4. 01 6月, 2016 1 次提交
  5. 27 5月, 2016 1 次提交
  6. 28 4月, 2016 1 次提交
  7. 21 3月, 2016 1 次提交
    • A
      Improve JacksonJsonEncoder · f7c6c69e
      Arjen Poutsma 提交于
      This commit removes the need for the custom Subscriber in
      JsonObjectEncoder, and replaces it with higher-level Flux and Mono-based
      solution.
      f7c6c69e
  8. 18 3月, 2016 1 次提交
  9. 28 1月, 2016 1 次提交
  10. 27 1月, 2016 1 次提交
  11. 20 1月, 2016 1 次提交
    • S
      demote cyclic dependency under reactor-core reactor package · 198e3164
      Stephane Maldini 提交于
      -> reactor.Mono : reactor.core.publisher.Mono
      -> reactor.Flux : reactor.core.publisher.Flux
      -> reactor.Processors : reactor.core.publisher.Processors
      -> reactor.Timers : reactor.core.timer.Timers
      -> reactor.Subscribers : reactor.core.subscriber.Subscribers
      198e3164
  12. 12 1月, 2016 1 次提交
  13. 07 1月, 2016 1 次提交
    • S
      Use Reactor 2.5 Flux and Mono Rx light API · 8ef7e2ff
      Sebastien Deleuze 提交于
      Flux and Mono are used both for implementation and exposed at API
      level to express 1 versus N semantic and to provide default Rx
      operators:
      - Flux<T> for multiple values Publisher (issue #48)
      - Mono<T> for single value Publisher (issue #50)
      - Mono<Void> for Publisher with no value (issue #49)
      8ef7e2ff
  14. 23 11月, 2015 1 次提交
    • R
      Remove top-level org.springfamework.reactive package · 4a3c0bc3
      Rossen Stoyanchev 提交于
      reactive.codec -> core.codec
      reactive.io    -> util
      
      These may very well not be the final locations. For now they simply
      express that there are classes that belong somewhere in core, i.e.
      they are lower level dependencies than web.
      4a3c0bc3
  15. 11 9月, 2015 1 次提交
  16. 10 9月, 2015 1 次提交
    • S
      Add Codec support · 881db068
      Sebastien Deleuze 提交于
      This commit adds support for Publisher based codecs that allows to convert
      byte stream to object stream and vice & versa.
      
      Jackson, JAXB2 and String codec implementations are provided.
      881db068