1. 39107ee Merge branch 'master' into develop by Roman Elizarov · 6 years ago
  2. 0eee3c3 docs: make select-expression & shared state and concurrency runnable by Prendota · 6 years ago
  3. 8a22c54 Get rid of timeout in stress test by Vsevolod Tolstopyatov · 6 years ago
  4. 65e6c8c Make examples runnable by Prendota · 6 years ago
  5. 56ee233 Fix typo by Robert Golusiński · 6 years ago
  6. a7e1014 Merge branch 'release-candidate' into develop by Vsevolod Tolstopyatov · 6 years ago
  7. cd37d8e Merge branch 'context-elements-opto' into release-candidate by Vsevolod Tolstopyatov · 6 years ago
  8. aba0edc Add workaround for androidx toolchain issues: try to load main dispat… (#709) by Vsevolod Tolstopyatov · 6 years ago
  9. b058ba1 Deprecate Job.cancel(cause) and ReceiveChannel.cancel(cause), return Unit from cancel without cause by Vsevolod Tolstopyatov · 6 years ago
  10. faa4774 Do not step into thread-local event-loop on CancellableContinuation#dispatch fast-path by Vsevolod Tolstopyatov · 6 years ago
  11. 09b9d6c Use FIFO queue in undispatched event loop by Vsevolod Tolstopyatov · 6 years ago
  12. 7ee722a Rework Dispatchers.Unconfined to use thread-local event loop by Vsevolod Tolstopyatov · 6 years ago
  13. ae85797 Cache result of ThreadContext#foldAll in the field of DispatchedCoroutine to avoid context fold in tight loops by Vsevolod Tolstopyatov · 6 years ago
  14. d1129b2 Removed doc suppress from Runnable interface by Roman Elizarov · 6 years ago
  15. 36c3ba1 Replace internal annotations with ones from 1.3 stdlib by Vsevolod Tolstopyatov · 6 years ago
  16. 706e393 Dokka fixes by Vsevolod Tolstopyatov · 6 years ago
  17. b6eca2a Make EventLoop internal, @JvmName("from") for ExecutorService.asCoroutineDispatcher by Vsevolod Tolstopyatov · 6 years ago
  18. 7fb590d Make some internal API public, but deprecated as error, exposing internal supertypes does not work in K/N (https://github.com/JetBrains/kotlin-native/issues/2167), add workaround for KT-27534 by Vsevolod Tolstopyatov · 6 years ago
  19. 4220ca2 Use toString implementation for continuations to leverage debug metadata by Vsevolod Tolstopyatov · 6 years ago
  20. 6902fac Check isCompleted on event loop we're trying to scheduler rather original owner of a task by Vsevolod Tolstopyatov · 6 years ago
  21. 1bdbb3e Cleanup: get rid of workarounds, cleanup guide, suppress/fix compilation warnings by Vsevolod Tolstopyatov · 6 years ago
  22. e6e8239 Experimental annotation revisit: by Vsevolod Tolstopyatov · 6 years ago
  23. 1f7b2d8 Make all API internal where it is possible by Vsevolod Tolstopyatov · 6 years ago
  24. 715acd3 Restore TOC in the root coroutines-guide.md file with links to individual files by Roman Elizarov · 6 years ago
  25. d92b0fa Remove deprecated API by Vsevolod Tolstopyatov · 6 years ago
  26. 62a6ab6 Fix compilation by Vsevolod Tolstopyatov · 6 years ago
  27. 0950dfa Migrate to Kotlin 1.3 coroutines, drop experimental from package by Roman Elizarov · 6 years ago
  28. 0f26f66 Fix shutdown sequence for CoroutineScheduler's views by Vsevolod Tolstopyatov · 6 years ago
  29. f5126d0 Mark newSingle/FixedThreadPoolContext as obsolete, document the reason by Roman Elizarov · 6 years ago
  30. 0ece388 Lazily load Dispatchers.Main and provide a stub impl on failure by Roman Elizarov · 6 years ago
  31. 29eeb1a Merge branch 'master' into develop by Vsevolod Tolstopyatov · 6 years ago
  32. a3826a9 Merge branch 'no-unwrap' into version-0.30.1 by Vsevolod Tolstopyatov · 6 years ago
  33. ec8cbd2 Short Dispatchers.Default.toString value ("DefaultDispatcher") by Roman Elizarov · 6 years ago
  34. cfe699f Move UI dispatcher to common Dispatchers.Main (#641) by Vsevolod Tolstopyatov · 6 years ago
  35. 73bd3a9 Add more @InternalCoroutinesApi to internal package by Vsevolod Tolstopyatov · 6 years ago
  36. 1fba6d2 Minor perf improvement when scheduling delayed task by Roman Elizarov · 6 years ago
  37. 4b0f4de Never loose coroutines when CoroutineScheduler is closed by Roman Elizarov · 6 years ago
  38. 85725e8 Fixed rescheduling, synchronization & task disposal in EventLoop by Roman Elizarov · 6 years ago
  39. b5c9c9f Never unwrap 3rd party CancellationException by Roman Elizarov · 6 years ago
  40. 54617b7 Fixed JDK16 tests & links in guide by Roman Elizarov · 6 years ago
  41. 8339511 Don't use AtomicBoolean in scheduler by Roman Elizarov · 6 years ago
  42. 303708b Coroutine scheduler is used by default instead of deprecated CommonPool by Roman Elizarov · 6 years ago
  43. 45c0be9 Fixed tests after integration of async & supervisor branches by Roman Elizarov · 6 years ago
  44. 49f25a5 Supervisors guide by Vsevolod Tolstopyatov · 6 years ago
  45. 88e72f9 Exception unwrapping logic rework, do not unwrap cancellation exception if parent can handle exceptions by Vsevolod Tolstopyatov · 6 years ago
  46. 21f171c Introduce SupervisorJob & supervisorScope by Roman Elizarov · 6 years ago
  47. 938c5e9 More stable output for guide-exceptions-05.kt by Roman Elizarov · 6 years ago
  48. fac516f Get rid of awaitAll() in documentation, rewrite `currentScope` section by Vsevolod Tolstopyatov · 6 years ago
  49. b63fd82 Unpark event-loop thread only when it's necessary by Vsevolod Tolstopyatov · 6 years ago
  50. e29f497 Avoid OOM in thread-pool dispatchers, try to reflectively invoke setRemoveFutureOnCancel on executor instance and use default dispatcher if attempt failed by Vsevolod Tolstopyatov · 6 years ago
  51. 7ff678f Default delay improvements by Vsevolod Tolstopyatov · 6 years ago
  52. 52bfdab async and async-like builders cancel parent on failure by Roman Elizarov · 6 years ago
  53. 18cc588 Restore binary compatibility of Executor.asCoroutineDispatcher by Roman Elizarov · 6 years ago
  54. 873e9a0 More permissive CoroutineSchedulerStressTest to avoid fails on slow Windows agents by Roman Elizarov · 6 years ago
  55. 0a656ff Fixed CoroutineScope of withContext block for structured concurrency by Roman Elizarov · 6 years ago
  56. 541a9b6 Job unwraps all instances of CancellationException by Roman Elizarov · 6 years ago
  57. 1b22af7 Fix lost exception during cancellation in produce, fix integration with play services after rebase by Vsevolod Tolstopyatov · 6 years ago
  58. 1e0a2f0 Merge branch 'develop' into handle-exception-fix by Roman Elizarov · 6 years ago
  59. 149ba48 Following internal API is removed from public declarations: by Vsevolod Tolstopyatov · 6 years ago
  60. a2d8088 Get rid of deprecated API where possible, add Channel.RENDEZVOUS by Vsevolod Tolstopyatov · 6 years ago
  61. 5633f91 Moved documentation for different kinds of channels to Channel interface by Roman Elizarov · 6 years ago
  62. 27b8f45 API Review for 1.0 release by Roman Elizarov · 6 years ago
  63. 6685fd0 Abolish distinction between cancelled and failed Job/Deferred by Roman Elizarov · 6 years ago
  64. 1d48a7c Allow to shutdown executor from withing worker thread by Vsevolod Tolstopyatov · 6 years ago
  65. f7a6334 Child fails on parent failure (not cancelled) by Roman Elizarov · 6 years ago
  66. 409ed26 Handle exception thrown by user-defined exception handler via global exception handler, so such exception can't break coroutines machinery by Vsevolod Tolstopyatov · 6 years ago
  67. f157cec Job machinery improvements: by Vsevolod Tolstopyatov · 6 years ago
  68. f7c5249 TestBase: Support -Dtest.verbose=true to print expected indices by Roman Elizarov · 6 years ago
  69. 33e7ce4 Removed "cancel parent" from TestBase exception handlers by Roman Elizarov · 6 years ago
  70. 5d18d02 Introduced ChildHandle for attachChild by Roman Elizarov · 6 years ago
  71. 7e23875 Fixed race between creation of a child & cancellation of parent job by Roman Elizarov · 6 years ago
  72. ecbc85c Fix exception aggregation to ensure atomic handling of exceptions by Roman Elizarov · 6 years ago
  73. 7db5553 Split main coroutines guide into multiple files by hadihariri · 6 years ago
  74. 87eaba8 Fixed cancellation of runBlocking event loon in the presence of delay (#589) by Roman Elizarov · 6 years ago
  75. ca0f12e Move CoroutineName to common module. by Vsevolod Tolstopyatov · 6 years ago
  76. 2dd5320 Cosmetic fixes by Vsevolod Tolstopyatov · 6 years ago
  77. ede2923 Fixed race in a new Job with listeners between start & cancel by Roman Elizarov · 6 years ago
  78. bca98f4 Reknit guide, fixed TOC in Knit with comma & verify mode in example-context-09 by Roman Elizarov · 6 years ago
  79. 241e74e CoroutineScheduler: fixed race between createNewWorker & shutdown for tests by Roman Elizarov · 6 years ago
  80. 6e3ffb1 Structured concurrency in tests (removed explicit coroutineContext) by Roman Elizarov · 6 years ago
  81. fa9586b Fixed sporadic test crashes related to withTimeout and children by Roman Elizarov · 6 years ago
  82. 564c5ff Fix bad code sample style by Alex Saveau · 6 years ago
  83. 82a5dfd Restore backward compatibility by Vsevolod Tolstopyatov · 6 years ago
  84. f189cec Updated dispatchers references in readmes and docs by Roman Elizarov · 6 years ago
  85. dc29b07 Dispatchers are renamed and grouped in the Dispatchers object by Roman Elizarov · 6 years ago
  86. 592de52 Structured concurrency for guava, jdk8 and promise modules, proper reference to newCoroutineContext by Roman Elizarov · 6 years ago
  87. c32579e Coroutines guide and IU guide update for stuctured concurrency by Roman Elizarov · 6 years ago
  88. 79414ec Structured concurrency implementation: by Vsevolod Tolstopyatov · 6 years ago
  89. 750d468 Fixed hangs during thread termination in IO dispatcher by Roman Elizarov · 6 years ago
  90. 990feca Use explicit classloader when loading installed CoroutineExceptionHandler impls by Roman Elizarov · 6 years ago
  91. 5758a77 Fix typo in documentation by Vsevolod Tolstopyatov · 6 years ago
  92. 8fecc20 Added missing package statements to tests by Roman Elizarov · 6 years ago
  93. 4e33cc6 Custom synchronized stub in common code for JVM/JS/Native by Roman Elizarov · 6 years ago
  94. 3da9995 Fix package name by Vsevolod Tolstopyatov · 6 years ago
  95. e5b2523 Update missing copyrights by Vsevolod Tolstopyatov · 6 years ago
  96. 1478bab Specify explicit type of IO val by Roman Elizarov · 6 years ago
  97. f5e67ba Introduce IO dispatcher to offload blocking I/O-intensive tasks by Roman Elizarov · 6 years ago
  98. e342597 Introduce ThreadLocal.asContextElement() by Vsevolod Tolstopyatov · 6 years ago
  99. 7587eba Introduce ThreadContextElement API to integrate with thread-local sensitive code by Roman Elizarov · 6 years ago
  100. b517f05 Introduce ExecutorCoroutineDispatcher instead of CloseableCoroutineDispatcher by Vsevolod Tolstopyatov · 6 years ago