1. 0dffcfd Merge 'develop' into project-structure by Roman Elizarov · 6 years ago
  2. a9687a3 Moved guide tests to the correspondingly scoped package by Roman Elizarov · 6 years ago
  3. 58c61c7 Updated the guide fan-out section to use channel iterator by bill · 6 years ago
  4. e1fa197 Restructure packages, get rid of src/main/kotlin/kotlinx/coroutines/experimental folder layout by Vsevolod Tolstopyatov · 6 years ago
  5. 0cf99bc Explain why non-constant placeholder is required by Vsevolod Tolstopyatov · 6 years ago
  6. 9faa039 IO: fix joining and continuous writing byte array interference by Sergey Mashkov · 6 years ago
  7. 517a259 Update ThreadPoolDispatcher.kt by paolop · 6 years ago
  8. e15eae8 IO: fix continuous writing session interfered with joining by Sergey Mashkov · 6 years ago
  9. e06b6ca Update CommonPool.kt by paolop · 6 years ago
  10. 89f8ff7 Introduce broadcast coroutine builder; by Roman Elizarov · 6 years ago
  11. 26b86e9 Preserve binary compatibility for Channels#sendBlocking by Vsevolod Tolstopyatov · 6 years ago
  12. 2cd27fb Replace DeprecationLevel.HIDDEN with DeprecationLevel.WARNING by Vsevolod Tolstopyatov · 6 years ago
  13. b5328a7 Leave only public ticker function, introduce TickerMode enum by Roman Elizarov · 6 years ago
  14. 03d2ff7 Rename DelayChannel to ticker by Vsevolod Tolstopyatov · 6 years ago
  15. 1dbc25e Implement DelayChannel Fixes #327 by Vsevolod Tolstopyatov · 6 years ago
  16. f2b4e0e Make exception handling in AbstractContinuation consistent: always prefer exception thrown from coroutine as exceptional reason, add cancellation cause as suppressed exception by Vsevolod Tolstopyatov · 6 years ago
  17. fd42442 Invoke exception handler for actor on cancellation even when channel was successfully closed, so exceptions thrown by actor are always reported by Vsevolod Tolstopyatov · 6 years ago
  18. c22a1c7 LockFreeMPSCQueue optimized & fixed by Roman Elizarov · 6 years ago
  19. 7c99a99 IO: reduce java.lang.Integer allocations by Sergey Mashkov · 6 years ago
  20. 6a0ce76 Introduce system property to control CommonPool parallelism by Vsevolod Tolstopyatov · 6 years ago
  21. a432a82 Fix broken readInt reading through the ring buffer edge by Sergey Mashkov · 6 years ago
  22. f5f0983 Restored binary compatibility for SubscriptionReceiveChannel removal by Roman Elizarov · 6 years ago
  23. 1d6230a Replace SubscriptionReceiveChannel with ReceiveChannel by Marko Devcic · 6 years ago
  24. ed17bc1 Adding a test-helper class TestCoroutineContext. by Anton Spaans · 6 years ago
  25. 87f2faa Fix compiler warnings Fixes #348 by Vsevolod Tolstopyatov · 6 years ago
  26. e0b6db0 Leaking handles in awaitAll are fixed by Roman Elizarov · 6 years ago
  27. dbd9e1c Consistent naming of handler base classes and their concrete impls by Roman Elizarov · 6 years ago
  28. 6d9f40f Merge develop into decouple-job by Roman Elizarov · 6 years ago
  29. 76146bb Merge branch 'await-all' into develop by Roman Elizarov · 6 years ago
  30. b4c7b40 Use disposeOnCompletion to remove cancelled delays by Roman Elizarov · 6 years ago
  31. cd00643 Delay bug fixes: by Vsevolod Tolstopyatov · 6 years ago
  32. 0406a9b Remove prev/next from common LockFreeLinkedList API by Roman Elizarov · 6 years ago
  33. 769d7dc Moved awaitAll/joinAll to common module by Roman Elizarov · 6 years ago
  34. f2bdf60 Merged develop (js-channels work) into await-all by Roman Elizarov · 6 years ago
  35. 11d6b5b Hide declarations in internal package by Roman Elizarov · 6 years ago
  36. 2cdbfd7 Properly implement select clause for JS channels by Vsevolod Tolstopyatov · 6 years ago
  37. 9619134 Migrate channels and related operators to common, so channels can be used from JS by Vsevolod Tolstopyatov · 6 years ago
  38. 189e995 awaitAll should be defined only for Deferred types and return results list by Roman Elizarov · 6 years ago
  39. e89cd68 More comments about CancellationException and its consistent use; by Roman Elizarov · 6 years ago
  40. c1092d5 Remove CompletedExceptionally#exception by Vsevolod Tolstopyatov · 6 years ago
  41. 05d3823 awaitAll improvements: create defensive copy of jobs to consistently handle concurrent mutations, make handler JobNode to avoid extra object allocation by Vsevolod Tolstopyatov · 6 years ago
  42. f5e63ca Replacing isCancelledWithoutCause with proper contract on exception, disabling stacktraces of JobCancellationException in production mode by Vsevolod Tolstopyatov · 6 years ago
  43. 203abb0 awaitAll review and todos by Roman Elizarov · 6 years ago
  44. f0ef14e Start jobs during awaitAll call to properly handle lazily started coroutines by Vsevolod Tolstopyatov · 6 years ago
  45. 9c69279 Update readme, take the shortest link in Knit when resolving API references by Vsevolod Tolstopyatov · 6 years ago
  46. 4f0d48b Introducing awaitAll and joinAll extensions on JVM by Vsevolod Tolstopyatov · 6 years ago
  47. 4b9a559 CompletedExceptionally now always has cause and exception became an alias to a cause. by Vsevolod Tolstopyatov · 6 years ago
  48. 81f79c3 Do not use deprecated coroutineContext by Ilya Gorbunov · 6 years ago
  49. f0cd180 Suppress errors about default parameters in actual functions by Ilya Gorbunov · 6 years ago
  50. 480d8e9 Fix complaints of the latest compiler: actuals without expect by Ilya Gorbunov · 6 years ago
  51. f6430f4 Cleanup: by Vsevolod Tolstopyatov · 6 years ago
  52. 80a2947 Make deprecated API hidden, replace deprecated API with new one by Vsevolod Tolstopyatov · 6 years ago
  53. 4aa18aa Introduce cancelling state for AbstractContinuation, improve exception handling, make tests stricter by Vsevolod Tolstopyatov · 6 years ago
  54. f3a5013 Decouple AbstractContinuation and CancellableContinuation from Job interface by Vsevolod Tolstopyatov · 6 years ago
  55. 931587a Improve test coverage of CancellableCoroutine, add benchmark by Vsevolod Tolstopyatov · 6 years ago
  56. 4dcdc4a Remove duplicate test file after rebase by Vsevolod Tolstopyatov · 6 years ago
  57. 4cb5d19 Allow negative timeouts in delay, withTimeout and onTimeout on JVM by Vsevolod Tolstopyatov · 6 years ago
  58. 590c888 Documentation for debug property values by Roman Elizarov · 6 years ago
  59. 0bb18fc Better way to set CoroutineContext#DEBUG value by Dmytro Danylyk · 6 years ago
  60. aa461cf Minimize cut-and-pasted code between JS and JVM by Roman Elizarov · 6 years ago
  61. 26f4b9e Add extension to ExecutorService to return closeable CoroutineDispatcher by Marko Devcic · 6 years ago
  62. 740c485 Fail with proper message if JDK_16 is not set by Venkat Peri · 6 years ago
  63. 7831716 IO: introduce non-flushing joinTo by Sergey Mashkov · 6 years ago
  64. d7d9e2f IO: eliminate kotlin.Pair allocations by Sergey Mashkov · 6 years ago
  65. 45bcb0b Improve ChannelsConsumeTest to avoid spurious failures due to concurrency by Roman Elizarov · 6 years ago
  66. c7d10a4 Fix references to `coroutineContext` is the docs of all the builders by Roman Elizarov · 6 years ago
  67. 9fe5f46 Deprecated CoroutineScope.coroutineContext which is replaced with by Roman Elizarov · 6 years ago
  68. fe8ba6b `onCompletion` added to `launch`, `async`, and `actor` by Roman Elizarov · 6 years ago
  69. 55a66ac Improve ReceiveChannel operators implementations to guarantee closing by Roman Elizarov · 6 years ago
  70. e4b6f09 Debug toString for channels by Roman Elizarov · 6 years ago
  71. fcce038 Add a context argument to Channel.filterNot by Jonathan Cornaz · 6 years ago
  72. 9faa61e Fixed produce builder to close the channel on completion instead of by Roman Elizarov · 6 years ago
  73. c1c380c Don't use ForkJoinPool if there is a SecurityManager present by Nikolay Metchev · 7 years ago
  74. e7b84bb IO: add read/write and lookAheadSuspend/write stress tests by Sergey Mashkov · 7 years ago
  75. e51ab83 MPP: Temporary workaround so that snapshot Kotlin 1.2.30 can compile it by Roman Elizarov · 7 years ago
  76. f161c9f MPP: Temporary workaround so that snapshot Kotlin 1.2.30 can compile it by Roman Elizarov · 7 years ago
  77. b2b5c06 Fixed hanged receive from a closed subscription of BroadcastChannel by Roman Elizarov · 7 years ago
  78. f0c1d99 IO: fix error propagation in blocking adapter by Sergey Mashkov · 7 years ago
  79. 8fbdff4 IO: add close cause property to byte channel by Sergey Mashkov · 7 years ago
  80. c0563cf Add ProGuard instructions to make sure AndroidExceptionPreHandler by Roman Elizarov · 7 years ago
  81. 7e94e70 Update coroutines-guide.md by Marcin Moskała · 7 years ago
  82. 0d7323a Ensure that `launch` handles uncaught exception before another coroutine by Roman Elizarov · 7 years ago
  83. cb78787 runBlocking is improved to properly support specified dispatchers, by Roman Elizarov · 7 years ago
  84. 48aa20b Improved actor builder documentation by Roman Elizarov · 7 years ago
  85. 0aa6db0 Fixed JobSupport single->list upgrade procedure. by Roman Elizarov · 7 years ago
  86. db0d4fc JobHandlersUpgradeStressTest introduced by Roman Elizarov · 7 years ago
  87. 4b9ae98 Simpler workaround for missing suspend tests (see KT-22228): by Roman Elizarov · 7 years ago
  88. f066fe9 Actual workaround for missing suspend tests (see KT-22228) by Roman Elizarov · 7 years ago
  89. 9da9e35 AbstractCoroutine: onCancellation shall be invoked before installed by Roman Elizarov · 7 years ago
  90. ebc8866 AbstractCoroutines notifies onXXX before all the installed handlers; by Roman Elizarov · 7 years ago
  91. dfeba24 Workarounds for KT-21968 to fix JS tests by Roman Elizarov · 7 years ago
  92. 23fb728 AbsractCoroutine documentation & some more common (shared) code; by Roman Elizarov · 7 years ago
  93. c12123e AbsractCoroutine moved to common module by Roman Elizarov · 7 years ago
  94. 2adf8bc AbstractCoroutine.start is introduced. by Roman Elizarov · 7 years ago
  95. d1842c6 IO: fix joining sequence, avoid infinite joinTo suspension by Sergey Mashkov · 7 years ago
  96. 869bde5 IO: more tests, use runTest instead of runBlocking for testing by Sergey Mashkov · 7 years ago
  97. 40f3fe5 IO: don't suspend inside of writing block during joining by Sergey Mashkov · 7 years ago
  98. ec2af2f IO: don't resume writers if they are waiting for joining completion by Sergey Mashkov · 7 years ago
  99. 4d01f7e IO: make reusable cancellable continuation implement DispatchedTask by Sergey Mashkov · 7 years ago
  100. 883e57e Make internal MPSC queue public by Sergey Mashkov · 7 years ago