1. 26f4b9e Add extension to ExecutorService to return closeable CoroutineDispatcher by Marko Devcic · 6 years ago
  2. 740c485 Fail with proper message if JDK_16 is not set by Venkat Peri · 6 years ago
  3. 7831716 IO: introduce non-flushing joinTo by Sergey Mashkov · 6 years ago
  4. d7d9e2f IO: eliminate kotlin.Pair allocations by Sergey Mashkov · 6 years ago
  5. 45bcb0b Improve ChannelsConsumeTest to avoid spurious failures due to concurrency by Roman Elizarov · 6 years ago
  6. c7d10a4 Fix references to `coroutineContext` is the docs of all the builders by Roman Elizarov · 6 years ago
  7. 9fe5f46 Deprecated CoroutineScope.coroutineContext which is replaced with by Roman Elizarov · 6 years ago
  8. fe8ba6b `onCompletion` added to `launch`, `async`, and `actor` by Roman Elizarov · 6 years ago
  9. 55a66ac Improve ReceiveChannel operators implementations to guarantee closing by Roman Elizarov · 6 years ago
  10. e4b6f09 Debug toString for channels by Roman Elizarov · 6 years ago
  11. fcce038 Add a context argument to Channel.filterNot by Jonathan Cornaz · 6 years ago
  12. 9faa61e Fixed produce builder to close the channel on completion instead of by Roman Elizarov · 6 years ago
  13. c1c380c Don't use ForkJoinPool if there is a SecurityManager present by Nikolay Metchev · 6 years ago
  14. e7b84bb IO: add read/write and lookAheadSuspend/write stress tests by Sergey Mashkov · 6 years ago
  15. e51ab83 MPP: Temporary workaround so that snapshot Kotlin 1.2.30 can compile it by Roman Elizarov · 6 years ago
  16. f161c9f MPP: Temporary workaround so that snapshot Kotlin 1.2.30 can compile it by Roman Elizarov · 6 years ago
  17. b2b5c06 Fixed hanged receive from a closed subscription of BroadcastChannel by Roman Elizarov · 6 years ago
  18. f0c1d99 IO: fix error propagation in blocking adapter by Sergey Mashkov · 6 years ago
  19. 8fbdff4 IO: add close cause property to byte channel by Sergey Mashkov · 6 years ago
  20. c0563cf Add ProGuard instructions to make sure AndroidExceptionPreHandler by Roman Elizarov · 7 years ago
  21. 7e94e70 Update coroutines-guide.md by Marcin Moskała · 7 years ago
  22. 0d7323a Ensure that `launch` handles uncaught exception before another coroutine by Roman Elizarov · 7 years ago
  23. cb78787 runBlocking is improved to properly support specified dispatchers, by Roman Elizarov · 7 years ago
  24. 48aa20b Improved actor builder documentation by Roman Elizarov · 7 years ago
  25. 0aa6db0 Fixed JobSupport single->list upgrade procedure. by Roman Elizarov · 7 years ago
  26. db0d4fc JobHandlersUpgradeStressTest introduced by Roman Elizarov · 7 years ago
  27. 4b9ae98 Simpler workaround for missing suspend tests (see KT-22228): by Roman Elizarov · 7 years ago
  28. f066fe9 Actual workaround for missing suspend tests (see KT-22228) by Roman Elizarov · 7 years ago
  29. 9da9e35 AbstractCoroutine: onCancellation shall be invoked before installed by Roman Elizarov · 7 years ago
  30. ebc8866 AbstractCoroutines notifies onXXX before all the installed handlers; by Roman Elizarov · 7 years ago
  31. dfeba24 Workarounds for KT-21968 to fix JS tests by Roman Elizarov · 7 years ago
  32. 23fb728 AbsractCoroutine documentation & some more common (shared) code; by Roman Elizarov · 7 years ago
  33. c12123e AbsractCoroutine moved to common module by Roman Elizarov · 7 years ago
  34. 2adf8bc AbstractCoroutine.start is introduced. by Roman Elizarov · 7 years ago
  35. d1842c6 IO: fix joining sequence, avoid infinite joinTo suspension by Sergey Mashkov · 7 years ago
  36. 869bde5 IO: more tests, use runTest instead of runBlocking for testing by Sergey Mashkov · 7 years ago
  37. 40f3fe5 IO: don't suspend inside of writing block during joining by Sergey Mashkov · 7 years ago
  38. ec2af2f IO: don't resume writers if they are waiting for joining completion by Sergey Mashkov · 7 years ago
  39. 4d01f7e IO: make reusable cancellable continuation implement DispatchedTask by Sergey Mashkov · 7 years ago
  40. 883e57e Make internal MPSC queue public by Sergey Mashkov · 7 years ago
  41. 09b621e IO: optimize byte buffer memory allocations by Sergey Mashkov · 7 years ago
  42. 0939f23 Make mutable continuation internally accessible by Sergey Mashkov · 7 years ago
  43. 4ee9cfb IO: add inline rendezvous swap implementation by Sergey Mashkov · 7 years ago
  44. 39a8854 IO: minor performance improvements by Sergey Mashkov · 7 years ago
  45. 6e61c23 IO: add Input/OutputStream adapters for regular Java blocking API by Sergey Mashkov · 7 years ago
  46. 074f0a2 IO: add limit parameter to copyAndClose helper function by Sergey Mashkov · 7 years ago
  47. dfae5e2 IO: add writeWhile function by Sergey Mashkov · 7 years ago
  48. ffc7134 IO: minor performance improvement by Sergey Mashkov · 7 years ago
  49. 6640b2b Public API for AbstractCoroutine by Roman Elizarov · 7 years ago
  50. 02e6c81 Simplified implementation of Channel.flatMap using toChannel function. by Roman Elizarov · 7 years ago
  51. 3e342e3 Fixed Publisher/Observable/Flowable.openSubscription in presence of selects; by Roman Elizarov · 7 years ago
  52. 9483301 Actually fixed startup/shutdown of DefaultExecutor for tests to prevent by Roman Elizarov · 7 years ago
  53. 4d626de Job.cancel and CompletableDeferred.complete support cancelling/completing by Roman Elizarov · 7 years ago
  54. b79277b MPP: Debug toString should not depend on kotlin-reflect by Roman Elizarov · 7 years ago
  55. e8986b8 Fixed startup/shutdown of DefaultExecutor for tests to prevent thread leak by Roman Elizarov · 7 years ago
  56. c45f5fa IO: Use TestBase in all tests and fix leaking threads in tests by Roman Elizarov · 7 years ago
  57. f29203c MPP: Ported DispatchedTask perf improvements to JS and more code is made common by Roman Elizarov · 7 years ago
  58. e084cf7 Use stressTestMultiplier in ByteBufferChannelTest timeout by Roman Elizarov · 7 years ago
  59. cafccfa Fixed removal of arbitrary nodes from ThreadSafeHeap, by Roman Elizarov · 7 years ago
  60. e873c0a Added comment that LockFreeMPSCQueue is not linearizable, by Roman Elizarov · 7 years ago
  61. 2845fd4 Reduce stressTestMultiplier to 25 (from 30) in stress test mode; by Roman Elizarov · 7 years ago
  62. 6129c94 Speed up stress tests and use stressTestMultiplier for nightly tests by Roman Elizarov · 7 years ago
  63. f2239e1 Performance: Remove DispatchTask, store value in DispatchedContinuation by Roman Elizarov · 7 years ago
  64. bdf23f2 Optimize creation of DispatchTask for cancellable continuations (fixed) by Roman Elizarov · 7 years ago
  65. ac48070 Optimize creation of DispatchTask for cancellable continuations by Roman Elizarov · 7 years ago
  66. 5d94a26 EventLoop and runBlocking performance is improved; by Roman Elizarov · 7 years ago
  67. bddb1d7 MPP: Remove runBlocking & EventLoop from common module by Roman Elizarov · 7 years ago
  68. d164f73 MPP: Common CoroutineContext extensions & doc suppress by Roman Elizarov · 7 years ago
  69. 00e90dd MPP: Documentation (readme files) by Roman Elizarov · 7 years ago
  70. a7db8ec MPP: Copyright notice in sources by Roman Elizarov · 7 years ago
  71. 9d47b52 MPP: Heap test for JS by Roman Elizarov · 7 years ago
  72. c0d71dc MPP: More common tests, using kotlin.test.assertTrue & runTest dsl by Roman Elizarov · 7 years ago
  73. e3f2884 MPP: async, Deferred and CompletableDeferred by Roman Elizarov · 7 years ago
  74. 19f4845 MPP: withTimeout, delay in int number of milliseconds by Roman Elizarov · 7 years ago
  75. 9d5abcd MPP: Common withContext + more tests by Roman Elizarov · 7 years ago
  76. 45c1a73 MPP: Simple JS tests are passing by Roman Elizarov · 7 years ago
  77. 8bff72b MPP: Common tests framework & CommonCoroutinesTest by Roman Elizarov · 7 years ago
  78. a12ee15 MPP: Delay, EventLoop & runBlocking moved to common code by Roman Elizarov · 7 years ago
  79. 1f0df4b MPP: Fixed invokeOnCompletion source compatibility by Roman Elizarov · 7 years ago
  80. e1c0b65 MPP: Job/launch and related basic interface are extracted; JS basic impl by Roman Elizarov · 7 years ago
  81. f9e13f5 Renamed `run` to `withContext` by Roman Elizarov · 7 years ago
  82. d66ee72 Separate "moreTest" task for jdk16Test & lockFreedomTest by Roman Elizarov · 7 years ago
  83. 9832d3d Rephrased Job.getCancellationException docs for clarity by Roman Elizarov · 7 years ago
  84. 9ef4e0c IO: fix accidentally used tryResumeWithException by Sergey Mashkov · 7 years ago
  85. 4df720f IO: introduce simple ByteReadChannel.discard implementation by Sergey Mashkov · 7 years ago
  86. 1e40237 IO: update ByteReadChannel.cancel/close documentation by Sergey Mashkov · 7 years ago
  87. a26b790 IO: propagate channel cancellation to controller coroutine by Sergey Mashkov · 7 years ago
  88. eee3aaf IO: add ByteReadChannel.cancel by Sergey Mashkov · 7 years ago
  89. 15639fa IO: add reader/writer parent job parameter by Sergey Mashkov · 7 years ago
  90. 4adac45 IO: fix spuriously hanging pipe tests by Sergey Mashkov · 7 years ago
  91. de8e44f IO: add read(0) tests by Sergey Mashkov · 7 years ago
  92. c558b2e IO: make copyTo from NIO channel flush chunks by Sergey Mashkov · 7 years ago
  93. 350d144 IO: make channel.read(lambda) return faster if already closed by Sergey Mashkov · 7 years ago
  94. 8af8937 IO: fix joining with different write byte orders by Sergey Mashkov · 7 years ago
  95. e676408 IO: fix infinite writeSuspend loop caused by auto-resuming flush by Sergey Mashkov · 7 years ago
  96. e86eb08 IO: add adapters to Java IO/NIO channels and streams (except async NIO) by Sergey Mashkov · 7 years ago
  97. 3e387b8 Job.children property is introduced; by Roman Elizarov · 7 years ago
  98. 4cf9dd2 CompletableDeferred constructor with parent Job added by Roman Elizarov · 7 years ago
  99. 447b88a Job.attachChild is deprecated as error-prone API; by Roman Elizarov · 7 years ago
  100. 5610e1d Bug fix: start hangs on lazy coroutine with attached invokeOnCompletion by Roman Elizarov · 7 years ago