From 30df58c7756617f5cfae533280d41d490cf589c3 Mon Sep 17 00:00:00 2001 From: Brandon Williams <135203+mbrandonw@users.noreply.github.com> Date: Mon, 6 Jul 2020 11:30:28 -0400 Subject: [PATCH] Update README.md --- 0105-combine-schedulers-pt2/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/0105-combine-schedulers-pt2/README.md b/0105-combine-schedulers-pt2/README.md index 47e93b22..53d9162f 100644 --- a/0105-combine-schedulers-pt2/README.md +++ b/0105-combine-schedulers-pt2/README.md @@ -2,4 +2,4 @@ > #### This directory contains code from Point-Free Episode: [Combine Schedulers: Controlling Time](https://www.pointfree.co/episodes/ep105-combine-schedulers-controlling-time) > -> We refactor our application’s code so that we can run it in production with a live dispatch queue for the scheduler, while allowing us to run it in tests with a test scheduler. If we do this naively we will find that generics infect many parts of our code, but luckily we can employ the technique of type erasure to make things much nicer. +> The Scheduler protocol of Combine is a powerful abstraction that unifies many ways of executing asynchronous work, and it can even control the flow of time through our code. Unfortunately Combine doesn’t give us this ability out of the box, so let’s build it from scratch.