1. dbd9e1c Consistent naming of handler base classes and their concrete impls by Roman Elizarov · 6 years ago
  2. 6d9f40f Merge develop into decouple-job by Roman Elizarov · 6 years ago
  3. 76146bb Merge branch 'await-all' into develop by Roman Elizarov · 6 years ago
  4. b4c7b40 Use disposeOnCompletion to remove cancelled delays by Roman Elizarov · 6 years ago
  5. cd00643 Delay bug fixes: by Vsevolod Tolstopyatov · 6 years ago
  6. 0406a9b Remove prev/next from common LockFreeLinkedList API by Roman Elizarov · 6 years ago
  7. 769d7dc Moved awaitAll/joinAll to common module by Roman Elizarov · 6 years ago
  8. f2bdf60 Merged develop (js-channels work) into await-all by Roman Elizarov · 6 years ago
  9. 11d6b5b Hide declarations in internal package by Roman Elizarov · 6 years ago
  10. 2cdbfd7 Properly implement select clause for JS channels by Vsevolod Tolstopyatov · 6 years ago
  11. 9619134 Migrate channels and related operators to common, so channels can be used from JS by Vsevolod Tolstopyatov · 6 years ago
  12. 189e995 awaitAll should be defined only for Deferred types and return results list by Roman Elizarov · 6 years ago
  13. e89cd68 More comments about CancellationException and its consistent use; by Roman Elizarov · 6 years ago
  14. c1092d5 Remove CompletedExceptionally#exception by Vsevolod Tolstopyatov · 6 years ago
  15. 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
  16. f5e63ca Replacing isCancelledWithoutCause with proper contract on exception, disabling stacktraces of JobCancellationException in production mode by Vsevolod Tolstopyatov · 6 years ago
  17. 203abb0 awaitAll review and todos by Roman Elizarov · 6 years ago
  18. f0ef14e Start jobs during awaitAll call to properly handle lazily started coroutines by Vsevolod Tolstopyatov · 6 years ago
  19. 9c69279 Update readme, take the shortest link in Knit when resolving API references by Vsevolod Tolstopyatov · 6 years ago
  20. 4f0d48b Introducing awaitAll and joinAll extensions on JVM by Vsevolod Tolstopyatov · 6 years ago
  21. 4b9a559 CompletedExceptionally now always has cause and exception became an alias to a cause. by Vsevolod Tolstopyatov · 6 years ago
  22. f0cd180 Suppress errors about default parameters in actual functions by Ilya Gorbunov · 6 years ago
  23. 480d8e9 Fix complaints of the latest compiler: actuals without expect by Ilya Gorbunov · 6 years ago
  24. f6430f4 Cleanup: by Vsevolod Tolstopyatov · 6 years ago
  25. 80a2947 Make deprecated API hidden, replace deprecated API with new one by Vsevolod Tolstopyatov · 6 years ago
  26. 4aa18aa Introduce cancelling state for AbstractContinuation, improve exception handling, make tests stricter by Vsevolod Tolstopyatov · 6 years ago
  27. f3a5013 Decouple AbstractContinuation and CancellableContinuation from Job interface by Vsevolod Tolstopyatov · 6 years ago
  28. 931587a Improve test coverage of CancellableCoroutine, add benchmark by Vsevolod Tolstopyatov · 6 years ago
  29. 4dcdc4a Remove duplicate test file after rebase by Vsevolod Tolstopyatov · 6 years ago
  30. 4cb5d19 Allow negative timeouts in delay, withTimeout and onTimeout on JVM by Vsevolod Tolstopyatov · 6 years ago
  31. 590c888 Documentation for debug property values by Roman Elizarov · 6 years ago
  32. 0bb18fc Better way to set CoroutineContext#DEBUG value by Dmytro Danylyk · 6 years ago
  33. aa461cf Minimize cut-and-pasted code between JS and JVM by Roman Elizarov · 6 years ago
  34. 26f4b9e Add extension to ExecutorService to return closeable CoroutineDispatcher by Marko Devcic · 6 years ago
  35. 45bcb0b Improve ChannelsConsumeTest to avoid spurious failures due to concurrency by Roman Elizarov · 6 years ago
  36. c7d10a4 Fix references to `coroutineContext` is the docs of all the builders by Roman Elizarov · 6 years ago
  37. 9fe5f46 Deprecated CoroutineScope.coroutineContext which is replaced with by Roman Elizarov · 6 years ago
  38. fe8ba6b `onCompletion` added to `launch`, `async`, and `actor` by Roman Elizarov · 6 years ago
  39. 55a66ac Improve ReceiveChannel operators implementations to guarantee closing by Roman Elizarov · 6 years ago
  40. e4b6f09 Debug toString for channels by Roman Elizarov · 6 years ago
  41. fcce038 Add a context argument to Channel.filterNot by Jonathan Cornaz · 6 years ago
  42. 9faa61e Fixed produce builder to close the channel on completion instead of by Roman Elizarov · 6 years ago
  43. c1c380c Don't use ForkJoinPool if there is a SecurityManager present by Nikolay Metchev · 6 years ago
  44. e51ab83 MPP: Temporary workaround so that snapshot Kotlin 1.2.30 can compile it by Roman Elizarov · 6 years ago
  45. f161c9f MPP: Temporary workaround so that snapshot Kotlin 1.2.30 can compile it by Roman Elizarov · 6 years ago
  46. b2b5c06 Fixed hanged receive from a closed subscription of BroadcastChannel by Roman Elizarov · 6 years ago
  47. c0563cf Add ProGuard instructions to make sure AndroidExceptionPreHandler by Roman Elizarov · 6 years ago
  48. 7e94e70 Update coroutines-guide.md by Marcin Moskała · 6 years ago
  49. 0d7323a Ensure that `launch` handles uncaught exception before another coroutine by Roman Elizarov · 6 years ago
  50. cb78787 runBlocking is improved to properly support specified dispatchers, by Roman Elizarov · 6 years ago
  51. 48aa20b Improved actor builder documentation by Roman Elizarov · 6 years ago
  52. 0aa6db0 Fixed JobSupport single->list upgrade procedure. by Roman Elizarov · 6 years ago
  53. db0d4fc JobHandlersUpgradeStressTest introduced by Roman Elizarov · 6 years ago
  54. 4b9ae98 Simpler workaround for missing suspend tests (see KT-22228): by Roman Elizarov · 6 years ago
  55. f066fe9 Actual workaround for missing suspend tests (see KT-22228) by Roman Elizarov · 6 years ago
  56. 9da9e35 AbstractCoroutine: onCancellation shall be invoked before installed by Roman Elizarov · 6 years ago
  57. ebc8866 AbstractCoroutines notifies onXXX before all the installed handlers; by Roman Elizarov · 6 years ago
  58. dfeba24 Workarounds for KT-21968 to fix JS tests by Roman Elizarov · 6 years ago
  59. 23fb728 AbsractCoroutine documentation & some more common (shared) code; by Roman Elizarov · 6 years ago
  60. c12123e AbsractCoroutine moved to common module by Roman Elizarov · 6 years ago
  61. 2adf8bc AbstractCoroutine.start is introduced. by Roman Elizarov · 6 years ago
  62. 883e57e Make internal MPSC queue public by Sergey Mashkov · 6 years ago
  63. 6640b2b Public API for AbstractCoroutine by Roman Elizarov · 6 years ago
  64. 02e6c81 Simplified implementation of Channel.flatMap using toChannel function. by Roman Elizarov · 6 years ago
  65. 3e342e3 Fixed Publisher/Observable/Flowable.openSubscription in presence of selects; by Roman Elizarov · 6 years ago
  66. 9483301 Actually fixed startup/shutdown of DefaultExecutor for tests to prevent by Roman Elizarov · 6 years ago
  67. 4d626de Job.cancel and CompletableDeferred.complete support cancelling/completing by Roman Elizarov · 6 years ago
  68. b79277b MPP: Debug toString should not depend on kotlin-reflect by Roman Elizarov · 6 years ago
  69. e8986b8 Fixed startup/shutdown of DefaultExecutor for tests to prevent thread leak by Roman Elizarov · 6 years ago
  70. f29203c MPP: Ported DispatchedTask perf improvements to JS and more code is made common by Roman Elizarov · 6 years ago
  71. cafccfa Fixed removal of arbitrary nodes from ThreadSafeHeap, by Roman Elizarov · 6 years ago
  72. e873c0a Added comment that LockFreeMPSCQueue is not linearizable, by Roman Elizarov · 6 years ago
  73. 2845fd4 Reduce stressTestMultiplier to 25 (from 30) in stress test mode; by Roman Elizarov · 6 years ago
  74. 6129c94 Speed up stress tests and use stressTestMultiplier for nightly tests by Roman Elizarov · 6 years ago
  75. f2239e1 Performance: Remove DispatchTask, store value in DispatchedContinuation by Roman Elizarov · 6 years ago
  76. bdf23f2 Optimize creation of DispatchTask for cancellable continuations (fixed) by Roman Elizarov · 7 years ago
  77. ac48070 Optimize creation of DispatchTask for cancellable continuations by Roman Elizarov · 7 years ago
  78. 5d94a26 EventLoop and runBlocking performance is improved; by Roman Elizarov · 7 years ago
  79. bddb1d7 MPP: Remove runBlocking & EventLoop from common module by Roman Elizarov · 7 years ago
  80. d164f73 MPP: Common CoroutineContext extensions & doc suppress by Roman Elizarov · 7 years ago
  81. 00e90dd MPP: Documentation (readme files) by Roman Elizarov · 7 years ago
  82. a7db8ec MPP: Copyright notice in sources by Roman Elizarov · 7 years ago
  83. 9d47b52 MPP: Heap test for JS by Roman Elizarov · 7 years ago
  84. c0d71dc MPP: More common tests, using kotlin.test.assertTrue & runTest dsl by Roman Elizarov · 7 years ago
  85. e3f2884 MPP: async, Deferred and CompletableDeferred by Roman Elizarov · 7 years ago
  86. 19f4845 MPP: withTimeout, delay in int number of milliseconds by Roman Elizarov · 7 years ago
  87. 9d5abcd MPP: Common withContext + more tests by Roman Elizarov · 7 years ago
  88. 45c1a73 MPP: Simple JS tests are passing by Roman Elizarov · 7 years ago
  89. 8bff72b MPP: Common tests framework & CommonCoroutinesTest by Roman Elizarov · 7 years ago
  90. a12ee15 MPP: Delay, EventLoop & runBlocking moved to common code by Roman Elizarov · 7 years ago
  91. 1f0df4b MPP: Fixed invokeOnCompletion source compatibility by Roman Elizarov · 7 years ago
  92. e1c0b65 MPP: Job/launch and related basic interface are extracted; JS basic impl by Roman Elizarov · 7 years ago
  93. f9e13f5 Renamed `run` to `withContext` by Roman Elizarov · 7 years ago
  94. 9832d3d Rephrased Job.getCancellationException docs for clarity by Roman Elizarov · 7 years ago
  95. 3e387b8 Job.children property is introduced; by Roman Elizarov · 7 years ago
  96. 4cf9dd2 CompletableDeferred constructor with parent Job added by Roman Elizarov · 7 years ago
  97. 447b88a Job.attachChild is deprecated as error-prone API; by Roman Elizarov · 7 years ago
  98. 5610e1d Bug fix: start hangs on lazy coroutine with attached invokeOnCompletion by Roman Elizarov · 7 years ago
  99. e8f694e Optional parent job parameter for coroutine builders by Roman Elizarov · 7 years ago
  100. 5e38b9f produce/actor: cancellation of a Job should cancel the underlying channel by Roman Elizarov · 7 years ago