1. 8385ec9 BroadcastChannel factory function by Roman Elizarov · 7 years ago
  2. 43e9011 Note on systems with nCPUs <= 2 by Roman Elizarov · 7 years ago
  3. e3aa8ff ArrayBroadcastChannel by Roman Elizarov · 7 years ago
  4. 8046fe1 ValueBroadcastChannel -> ConflatedBroadcastChannel by Roman Elizarov · 7 years ago
  5. ca9d5be Fix withTimeout/OrNull bug with spurious concurrency on cancellation by Roman Elizarov · 7 years ago
  6. 507f5d4 Implemented withTimeoutOrNull function by Roman Elizarov · 7 years ago
  7. 9d61b3e Select expression onTimeout clause by Roman Elizarov · 7 years ago
  8. c02ee11 Renamed withMutex to withLock by Roman Elizarov · 7 years ago
  9. 4b0ef7b ValueBroadcastChannel by Roman Elizarov · 7 years ago
  10. ecda27f CoroutineStart enum is introduced in launch/async/actor by Roman Elizarov · 7 years ago
  11. 95981f3 Update all examples with Knit tool (imports) by Roman Elizarov · 7 years ago
  12. 7adb876 Cleaned up deprecations and unused parameters by Roman Elizarov · 7 years ago
  13. 86349be Introduced `consumeEach` for channels and reactive streams, deprecated iteration on reactive streams by Roman Elizarov · 7 years ago
  14. 4e60132 Improve documentation on suspended Channel.send behaviour when the channel is closed by Roman Elizarov · 7 years ago
  15. 4638d79 startUndispatchedCoroutine is renamed to startCoroutineUndispatched for consistency with coroutine intrinsics by Roman Elizarov · 7 years ago
  16. 8a4a8e1 Guide to reactive streams with coroutines by Roman Elizarov · 7 years ago
  17. f526b13 More predictable behaviour for example-channel-09 and better diagnostics on test failure by Roman Elizarov · 7 years ago
  18. 3ef7868 Three times as longer stress test (x30 multiplier) by Roman Elizarov · 7 years ago
  19. d002162 Fixed coroutines guide example-context-02 file and predictability by Roman Elizarov · 7 years ago
  20. 38b5ea1 Executor.toCoroutineDispatcher is renamed to asCoroutineDispatcher by Roman Elizarov · 7 years ago
  21. 4fe1801 `run` is optimized with fast-path case and no longer has `CoroutineScope` in its block by Roman Elizarov · 7 years ago
  22. 3aed4ee ConflatedChannel by Roman Elizarov · 7 years ago
  23. 43d831f Fixed dispatching logic of `withTimeout` (removed extra dispatch) by Roman Elizarov · 7 years ago
  24. fadf8c8 Update copyrights by Roman Elizarov · 7 years ago
  25. 4518e05 EventLoop implements Delay by Roman Elizarov · 7 years ago
  26. 43604bd Tweak LockFreeLinkedListLongStressTest so it does not run out of memory under -DstressTest by Roman Elizarov · 7 years ago
  27. 5785720 FizzBuzz example from "Selecting from channels" section is changed to main loop context for predictability of results by Roman Elizarov · 7 years ago
  28. ec9384c Fixed "Fan-out" example using iteration to receive from channel by Roman Elizarov · 7 years ago
  29. bc296bb Throttle fast senders in ChannelSendReceiveStressTest to prevent OOM with LinkedListChannel stress test by Roman Elizarov · 7 years ago
  30. cbd8e40 Fixed ChannelSendReceiveStressTest memory consumption for stress test mode by Roman Elizarov · 7 years ago
  31. 2ad0e94 LinkedListChannel implementation by Roman Elizarov · 7 years ago
  32. ebe18b4 Stress-testing infrastructure by Roman Elizarov · 7 years ago
  33. 174c696 Implemented "onLock" clause for Mutex.lock and added optional "owner" parameter to all Mutex funs by Roman Elizarov · 7 years ago
  34. b0517ba "Channels are fair" section with ping-pong table example by Roman Elizarov · 7 years ago
  35. 04d11ca Implemented "selectUnbiased" by Roman Elizarov · 7 years ago
  36. c0e19f8 Introduced "actor" coroutine builder by Roman Elizarov · 7 years ago
  37. 1e45960 Couple more examples for "Shared mutable state and concurrency" section by Roman Elizarov · 7 years ago
  38. 7c864d8 Fixed typos and improve code based on @orangy feedback by Roman Elizarov · 7 years ago
  39. 731f0ad Generated unit test for all examples in the guide by Roman Elizarov · 7 years ago
  40. d84dbc2 Jon.onJoin select clause is implemented, lazy onAwait/onJoin & dispatch fixed by Roman Elizarov · 7 years ago
  41. a84730b Corrections to the recent guide additions by Roman Elizarov · 7 years ago
  42. f5bc047 A section on "Shared mutable state and concurrency" in the guide by Roman Elizarov · 7 years ago
  43. f8fc478 Mutex is moved to sync subpackage by Roman Elizarov · 7 years ago
  44. d4dcbe2 Guide to select by Roman Elizarov · 7 years ago
  45. 1216e91 Select statement with onSend/onReceive/onAwait clauses by Roman Elizarov · 7 years ago
  46. ee7c0eb Multi-part atomic remove operation support for LockFreeLinkedList by Roman Elizarov · 7 years ago
  47. e780347 Job.onCompletion is renamed to Job.invokeOnCompletion for consistency by Roman Elizarov · 7 years ago
  48. caaed5c Restored star imports by Roman Elizarov · 7 years ago
  49. 33ecdca Mutex.isLocked added by Roman Elizarov · 7 years ago
  50. 8bd5254 Mutex added by Roman Elizarov · 7 years ago
  51. a5e653f buildChannel is renamed to produce by Roman Elizarov · 7 years ago
  52. 2fd7cb3 An example of cancellation via explicit job by Roman Elizarov · 7 years ago
  53. f2be2e4 Renamed by Roman Elizarov · 7 years ago
  54. 32d9532 `defer` coroutine builder is renamed to `async`. by Roman Elizarov · 7 years ago
  55. b533112 Fixed date log pattern in examples by Roman Elizarov · 7 years ago
  56. b7c46de Exception transparency in job.cancel (original cause is rethrown) by Roman Elizarov · 7 years ago
  57. fa612f9 One more stress test for LockFreeLinkedList (many concurrent operations on a short list) by Roman Elizarov · 7 years ago
  58. f16fd27 Copyright and license notice by Roman Elizarov · 7 years ago
  59. b7721cf Guide for channel basics by Roman Elizarov · 7 years ago
  60. 12f961d Remove dependency on kotlin.test by Roman Elizarov · 7 years ago
  61. b6b0125 Improved Job performance by using reference equality on state, added deferred & channel tests for bad class with exceptions on equals by Roman Elizarov · 7 years ago
  62. 7b2d8b0 ArrayChannel implementation and tests by Roman Elizarov · 7 years ago
  63. 6c63aea LockFreeLinkedList refactored by Roman Elizarov · 7 years ago
  64. 187eace Basic Channel interfaces and RendezvousChannel implementation by Roman Elizarov · 7 years ago
  65. fa7723e Knit tool updates TOC, example files from guide are renamed by section by Roman Elizarov · 7 years ago
  66. 2f6d7c9 A guide on coroutine contexts, Here context renamed to Unconfined by Roman Elizarov · 7 years ago
  67. b3d55a5 Knit tool for guide examples by Roman Elizarov · 7 years ago
  68. 1293ccd Coroutine guide: more on cancellation and "Composing suspending functions" section by Roman Elizarov · 7 years ago
  69. ea4a51b Updated to kotlin version 1.1.0-rc by Roman Elizarov · 7 years ago
  70. 7deefb8 Guide on coroutines expanded (cancellation is covered) and linked from README page by Roman Elizarov · 7 years ago
  71. f4d7a23 Core tutorial typos and language corrected by Roman Elizarov · 7 years ago
  72. 7cf452e Dispatchers default behaviour is changed to schedule new coroutine for execution later. by Roman Elizarov · 7 years ago
  73. daa7922 Optimize single completion listener jobs (one fewer object allocation) by Roman Elizarov · 7 years ago
  74. 41c5c8b lazyDefer introduced by Roman Elizarov · 7 years ago
  75. 49ebab9 Compile kotlinx-coroutines-core under JDK1.6 by Roman Elizarov · 7 years ago
  76. 92ef15b Draft tutorial by Roman Elizarov · 7 years ago
  77. 55a47f9 Timeout delay scheduler thread by Roman Elizarov · 7 years ago
  78. 67891d8 Added context parameter to CoroutineDispatcher methods, implemented Executor.toCoroutineDispatcher by Roman Elizarov · 7 years ago
  79. e65e47c Tests for defer by Roman Elizarov · 7 years ago
  80. fbb36d3 xxx-test files are renamed to xxx-example as appropriate by Roman Elizarov · 7 years ago
  81. d528e3e EventLoop is integrated as runBlocking default and is used for tests, coroutine builders provide CoroutineScope with context by Roman Elizarov · 7 years ago
  82. 58a7add Fixed initialization of Job with parent (initParentJob), fixed handling on uncaught exceptions in standalone coroutines by Roman Elizarov · 7 years ago
  83. 53a0a40 EventLoop work in progress by Roman Elizarov · 7 years ago
  84. dbcd841 try -> Try, lifetime -> job by Roman Elizarov · 7 years ago
  85. a567659 Made LockFreeLinkedList internal by Roman Elizarov · 7 years ago
  86. 3754f95 New implementation for 1.1-Beta by Roman Elizarov · 7 years ago