1. 02 7月, 2016 1 次提交
    • S
      Refactor reactive type conversion support · 12d7b781
      Sebastien Deleuze 提交于
      This commit replaces Reactive Streams converters for RxJava1 and
      CompletableFuture with Reactor specific ones. The results in conversion
      that preserves stream semantics, i.e. Mono vs Flux.
      
      For example this is allowed:
      Flux -> Observable
      Mono -> Single
      Mono -> CompletableFuture
      
      This is not allowed:
      Flux -> Single
      Mono -> Observable
      Flux -> CompletableFuture
      
      As a result it is now possible to check through the ConversionService
      if a target type to convert to is a stream of many or of one which is
      useful for decoding purposes.
      
      The commit also adds PublisherToFluxConverter to allow conversion from
      raw Publisher to Flux. The reverse is not necessary since Flux is a
      Publisher and it's a no-op conversion.
      12d7b781
  2. 01 7月, 2016 1 次提交
  3. 30 6月, 2016 1 次提交
  4. 29 6月, 2016 1 次提交
  5. 28 6月, 2016 1 次提交
  6. 22 6月, 2016 1 次提交
  7. 11 6月, 2016 1 次提交
  8. 07 6月, 2016 1 次提交
  9. 06 6月, 2016 1 次提交