1. 11 12月, 2017 1 次提交
    • S
      Fix Kdoc regression to show only Kotlin API · 769ea1b1
      sdeleuze 提交于
      As of Gradle Kotlin plugin 1.1.60,
      project.sourceSets.main.kotlin.srcDirs contains
      Java source directories in addition to Kotlin
      ones. This commit filter out Java sources to
      retain only Kotlin ones.
      
      Issue: SPR-16268
      769ea1b1
  2. 10 12月, 2017 2 次提交
  3. 07 12月, 2017 4 次提交
  4. 06 12月, 2017 1 次提交
  5. 05 12月, 2017 2 次提交
  6. 03 12月, 2017 1 次提交
  7. 02 12月, 2017 5 次提交
  8. 01 12月, 2017 1 次提交
  9. 30 11月, 2017 3 次提交
  10. 29 11月, 2017 6 次提交
  11. 28 11月, 2017 4 次提交
  12. 27 11月, 2017 2 次提交
  13. 26 11月, 2017 1 次提交
  14. 25 11月, 2017 1 次提交
  15. 24 11月, 2017 3 次提交
  16. 23 11月, 2017 3 次提交
    • R
      Improve semantics writing currentData · 01a82b52
      Rossen Stoyanchev 提交于
      Before this commit, the return value from write was interpreted as the
      data being fully written and ready to be released via releaseData().
      
      This is not true for WebSocketSession implementations where a true
      return value simply means the message was sent with the full payload
      but releas is not appropriate until a send confirmation.
      
      Technically not an issue since WebSocketSession's extending this do
      not use pooled buffers. Nevertheless this commit refines the semantics
      of write, removes the releaseData() method, and makes sub-classes
      responsible for releasing the buffer when fully written (and they
      know best when that is). As a bonus currentData is now private.
      
      Issue: SPR-16207
      01a82b52
    • R
      Polish · 102a0ad7
      Rossen Stoyanchev 提交于
      102a0ad7
    • R
      Polish and improve logging · c1b191ed
      Rossen Stoyanchev 提交于
      c1b191ed