InfoQ Homepage Asynchronous Programming Content on InfoQ
-
Asynchronous Programming with Kotlin Coroutines in Spring
Konrad Kamiński shows how coroutines can be used in Spring-based applications, what sort of problems can be encountered and how to solve them. Also, the spring-kotlin-coroutine library.
-
I'll Get Back to You: Task, Await, and Asynchronous Methods
Jeremy Clark discusses consuming asynchronous methods with Task, covering continuations, cancellations, and exception handling.
-
Actors or Not: Async Event Architectures
Yaroslav Tkachenko discusses two approaches to an asynchronous event-based architecture: a "classic" style protocol and an actor-based approach, exploring benefits, challenges, and lessons learned.
-
High Performance Data Mart Using Event Plots
Chaitanya Chalasani presents a case study and demonstration of near real-time asynchronous event processing-based plotting of events and states of FSMs.
-
Fresh Async with Kotlin
Roman Elizarov talks about the traditional async/await approach that is based on futures/promises and how the Kotlin’s solution is providing a safer and easier programming model.
-
Managing the Reactive World with RxJava
Jake Wharton discusses how to think about asynchronous sources, the tools that RxJava provides to handle them, and takes a look at the future of Java and how it will affect the library.
-
Async or Bust!?
Todd Montgomery discusses several questions related to the asynchronous vs synchronous designs debate.
-
Deep Dive into Asynchronous Patterns in JavaScript
Joseph Andaverde provides insight on how asynchronous patterns - callbacks, promises, generators, and async/await - can be applied through simple yet pragmatic examples.
-
Exercises in Programming Style
Crista Lopes demos writing the same program using multiple styles, showcasing the richness of human computational thought and the need to avoid being stuck with one or two styles for life.
-
What Elixir is About
José Valim introduces Elixir and some of the most important features: data types, modules, async, collections, parallelism, streams, etc.
-
Asynchronous Patterns for Client, Server, and IoT
Andrea Giammarchi presents different asynchronous patterns and best practices for the Web, the server, and the embedded IoT platforms.
-
core.async: Concurrency Without Callbacks
Stuart Halloway discusses the design of core.async and some of its capabilities: channels, put and take, go blocks, alts! and alts!!, timeouts, showing their use through code.