1. 0950dfa Migrate to Kotlin 1.3 coroutines, drop experimental from package by Roman Elizarov · 6 years ago
  2. 0f26f66 Fix shutdown sequence for CoroutineScheduler's views by Vsevolod Tolstopyatov · 6 years ago
  3. f5126d0 Mark newSingle/FixedThreadPoolContext as obsolete, document the reason by Roman Elizarov · 6 years ago
  4. 0ece388 Lazily load Dispatchers.Main and provide a stub impl on failure by Roman Elizarov · 6 years ago
  5. 29eeb1a Merge branch 'master' into develop by Vsevolod Tolstopyatov · 6 years ago
  6. a3826a9 Merge branch 'no-unwrap' into version-0.30.1 by Vsevolod Tolstopyatov · 6 years ago
  7. ec8cbd2 Short Dispatchers.Default.toString value ("DefaultDispatcher") by Roman Elizarov · 6 years ago
  8. cfe699f Move UI dispatcher to common Dispatchers.Main (#641) by Vsevolod Tolstopyatov · 6 years ago
  9. 73bd3a9 Add more @InternalCoroutinesApi to internal package by Vsevolod Tolstopyatov · 6 years ago
  10. 1fba6d2 Minor perf improvement when scheduling delayed task by Roman Elizarov · 6 years ago
  11. 4b0f4de Never loose coroutines when CoroutineScheduler is closed by Roman Elizarov · 6 years ago
  12. 85725e8 Fixed rescheduling, synchronization & task disposal in EventLoop by Roman Elizarov · 6 years ago
  13. b5c9c9f Never unwrap 3rd party CancellationException by Roman Elizarov · 6 years ago
  14. 54617b7 Fixed JDK16 tests & links in guide by Roman Elizarov · 6 years ago
  15. 8339511 Don't use AtomicBoolean in scheduler by Roman Elizarov · 6 years ago
  16. 303708b Coroutine scheduler is used by default instead of deprecated CommonPool by Roman Elizarov · 6 years ago
  17. 45c0be9 Fixed tests after integration of async & supervisor branches by Roman Elizarov · 6 years ago
  18. 49f25a5 Supervisors guide by Vsevolod Tolstopyatov · 6 years ago
  19. 88e72f9 Exception unwrapping logic rework, do not unwrap cancellation exception if parent can handle exceptions by Vsevolod Tolstopyatov · 6 years ago
  20. 21f171c Introduce SupervisorJob & supervisorScope by Roman Elizarov · 6 years ago
  21. 938c5e9 More stable output for guide-exceptions-05.kt by Roman Elizarov · 6 years ago
  22. fac516f Get rid of awaitAll() in documentation, rewrite `currentScope` section by Vsevolod Tolstopyatov · 6 years ago
  23. b63fd82 Unpark event-loop thread only when it's necessary by Vsevolod Tolstopyatov · 6 years ago
  24. 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
  25. 7ff678f Default delay improvements by Vsevolod Tolstopyatov · 6 years ago
  26. 52bfdab async and async-like builders cancel parent on failure by Roman Elizarov · 6 years ago
  27. 18cc588 Restore binary compatibility of Executor.asCoroutineDispatcher by Roman Elizarov · 6 years ago
  28. 873e9a0 More permissive CoroutineSchedulerStressTest to avoid fails on slow Windows agents by Roman Elizarov · 6 years ago
  29. 0a656ff Fixed CoroutineScope of withContext block for structured concurrency by Roman Elizarov · 6 years ago
  30. 541a9b6 Job unwraps all instances of CancellationException by Roman Elizarov · 6 years ago
  31. 1b22af7 Fix lost exception during cancellation in produce, fix integration with play services after rebase by Vsevolod Tolstopyatov · 6 years ago
  32. 1e0a2f0 Merge branch 'develop' into handle-exception-fix by Roman Elizarov · 6 years ago
  33. 149ba48 Following internal API is removed from public declarations: by Vsevolod Tolstopyatov · 6 years ago
  34. a2d8088 Get rid of deprecated API where possible, add Channel.RENDEZVOUS by Vsevolod Tolstopyatov · 6 years ago
  35. 5633f91 Moved documentation for different kinds of channels to Channel interface by Roman Elizarov · 6 years ago
  36. 27b8f45 API Review for 1.0 release by Roman Elizarov · 6 years ago
  37. 6685fd0 Abolish distinction between cancelled and failed Job/Deferred by Roman Elizarov · 6 years ago
  38. 1d48a7c Allow to shutdown executor from withing worker thread by Vsevolod Tolstopyatov · 6 years ago
  39. f7a6334 Child fails on parent failure (not cancelled) by Roman Elizarov · 6 years ago
  40. 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
  41. f157cec Job machinery improvements: by Vsevolod Tolstopyatov · 6 years ago
  42. f7c5249 TestBase: Support -Dtest.verbose=true to print expected indices by Roman Elizarov · 6 years ago
  43. 33e7ce4 Removed "cancel parent" from TestBase exception handlers by Roman Elizarov · 6 years ago
  44. 5d18d02 Introduced ChildHandle for attachChild by Roman Elizarov · 6 years ago
  45. 7e23875 Fixed race between creation of a child & cancellation of parent job by Roman Elizarov · 6 years ago
  46. ecbc85c Fix exception aggregation to ensure atomic handling of exceptions by Roman Elizarov · 6 years ago
  47. 7db5553 Split main coroutines guide into multiple files by hadihariri · 6 years ago
  48. 87eaba8 Fixed cancellation of runBlocking event loon in the presence of delay (#589) by Roman Elizarov · 6 years ago
  49. ca0f12e Move CoroutineName to common module. by Vsevolod Tolstopyatov · 6 years ago
  50. 2dd5320 Cosmetic fixes by Vsevolod Tolstopyatov · 6 years ago
  51. ede2923 Fixed race in a new Job with listeners between start & cancel by Roman Elizarov · 6 years ago
  52. bca98f4 Reknit guide, fixed TOC in Knit with comma & verify mode in example-context-09 by Roman Elizarov · 6 years ago
  53. 241e74e CoroutineScheduler: fixed race between createNewWorker & shutdown for tests by Roman Elizarov · 6 years ago
  54. 6e3ffb1 Structured concurrency in tests (removed explicit coroutineContext) by Roman Elizarov · 6 years ago
  55. fa9586b Fixed sporadic test crashes related to withTimeout and children by Roman Elizarov · 6 years ago
  56. 564c5ff Fix bad code sample style by Alex Saveau · 6 years ago
  57. 82a5dfd Restore backward compatibility by Vsevolod Tolstopyatov · 6 years ago
  58. f189cec Updated dispatchers references in readmes and docs by Roman Elizarov · 6 years ago
  59. dc29b07 Dispatchers are renamed and grouped in the Dispatchers object by Roman Elizarov · 6 years ago
  60. 592de52 Structured concurrency for guava, jdk8 and promise modules, proper reference to newCoroutineContext by Roman Elizarov · 6 years ago
  61. c32579e Coroutines guide and IU guide update for stuctured concurrency by Roman Elizarov · 6 years ago
  62. 79414ec Structured concurrency implementation: by Vsevolod Tolstopyatov · 6 years ago
  63. 750d468 Fixed hangs during thread termination in IO dispatcher by Roman Elizarov · 6 years ago
  64. 990feca Use explicit classloader when loading installed CoroutineExceptionHandler impls by Roman Elizarov · 6 years ago
  65. 5758a77 Fix typo in documentation by Vsevolod Tolstopyatov · 6 years ago
  66. 8fecc20 Added missing package statements to tests by Roman Elizarov · 6 years ago
  67. 4e33cc6 Custom synchronized stub in common code for JVM/JS/Native by Roman Elizarov · 6 years ago
  68. 3da9995 Fix package name by Vsevolod Tolstopyatov · 6 years ago
  69. e5b2523 Update missing copyrights by Vsevolod Tolstopyatov · 6 years ago
  70. 1478bab Specify explicit type of IO val by Roman Elizarov · 6 years ago
  71. f5e67ba Introduce IO dispatcher to offload blocking I/O-intensive tasks by Roman Elizarov · 6 years ago
  72. e342597 Introduce ThreadLocal.asContextElement() by Vsevolod Tolstopyatov · 6 years ago
  73. 7587eba Introduce ThreadContextElement API to integrate with thread-local sensitive code by Roman Elizarov · 6 years ago
  74. b517f05 Introduce ExecutorCoroutineDispatcher instead of CloseableCoroutineDispatcher by Vsevolod Tolstopyatov · 6 years ago
  75. cdf8468 Corrected return-type of EventLoop pseudo ctor by Geoff · 6 years ago
  76. 4df1d61 Merge branch 'develop' into job-exceptions by Roman Elizarov · 6 years ago
  77. 44f52b8 Fix RunBlockingTest on single core machine by Vsevolod Tolstopyatov · 6 years ago
  78. 6a3f17f Unpark runBlocking thread on coroutine completion instead of cancellation by Vsevolod Tolstopyatov · 6 years ago
  79. cac1a0f Provide API to create limited view of experimental dispatcher by Vsevolod Tolstopyatov · 6 years ago
  80. 8dd5b06 Adjust stress test for machine with two cores by Vsevolod Tolstopyatov · 6 years ago
  81. e0cf38f Get rid of unnecessary println in tests by Vsevolod Tolstopyatov · 6 years ago
  82. f18a750 Do not print GuideTest system out if test passes by Vsevolod Tolstopyatov · 6 years ago
  83. c758169 Handle job exception via PerformOp by Vsevolod Tolstopyatov · 6 years ago
  84. 6839151 Adjust racy tests by Vsevolod Tolstopyatov · 6 years ago
  85. 21ce9c0 Additional debug output for CoroutineSchedulerStressTest by Roman Elizarov · 6 years ago
  86. e051c33 kotlinx-coroutines-io module removed, it has moved to kotlinx.io by Roman Elizarov · 6 years ago
  87. 79aef6b Moved internalAnnotations to "plain" internal package and placed into proper folder by Roman Elizarov · 6 years ago
  88. 563da40 Stylistic updates to exception handling rework by Roman Elizarov · 6 years ago
  89. 590696d Exception handling coroutines guide by Vsevolod Tolstopyatov · 6 years ago
  90. 91ecee8 Exception handling update: by Vsevolod Tolstopyatov · 6 years ago
  91. c9afb67 Optimize exceptions list in JobSupport, invoke onJobException in active -> cancelled path, update documentation by Vsevolod Tolstopyatov · 6 years ago
  92. 06f57aa JobSupport cancellation rework: by Vsevolod Tolstopyatov · 6 years ago
  93. 3bda22c JobSupport stylistic improvements: by Vsevolod Tolstopyatov · 6 years ago
  94. 6e12fc4 Fix duplicated word "currently" in KDoc by Louis CAD · 6 years ago
  95. e90cdb0 Execute EventLoop#invokeOnTimeout in DefaultDispatcher to allow busy-wait loops by Vsevolod Tolstopyatov · 6 years ago
  96. 129ec8b Revert "Provide BlockingChecker mechanism which checks current context" by Vsevolod Tolstopyatov · 6 years ago
  97. 2a59741 Revert "System property to control BlockingChecker extension point for runBlocking" by Vsevolod Tolstopyatov · 6 years ago
  98. 7e0911a Fixed atomic var -> val by Roman Elizarov · 6 years ago
  99. fb6f240 Make scheduler stress test pass on small machines (Amazon i3) by Vsevolod Tolstopyatov · 6 years ago
  100. ec05e8a Remove no longer needed warning suppression by Louis CAD · 6 years ago