Skip to Content
Extending Swift Value(s) to the Server
book

Extending Swift Value(s) to the Server

by David Ungar, Robert Dickerson
February 2017
Intermediate to advanced
75 pages
1h 37m
English
O'Reilly Media, Inc.
Content preview from Extending Swift Value(s) to the Server

Chapter 3. Swift Promises to Tame Asynchrony

Server-side applications typically make requests to other web services or databases, and these requests are usually asynchronous; the application does not stop to wait for the result to return. These requests may succeed or fail, and often the result contains the input to the next asynchronous request. For example, consider an application that can find the temperature at the user’s home. The application makes a request to a database to discover where the user lives, then makes a subsequent request to a weather service to get the temperature in that location. But if the database is missing an entry for a user, the subsequent request to the weather service must be skipped. In addition to sequencing the chain of asynchronous operations, an application must vary the sequence to cope with errors. The required logic can be a challenge to program.

This chapter shows how Swift’s support for first-class functions can be harnessed to implement promises, one of the most effective constructs for programming such chains. After reading this chapter, you will understand how promises work, and why they are so beneficial. To illustrate this, we have implemented a very basic version of PromiseKit called MiniPromiseKit that you can clone, refer to, and use in your projects.

This chapter explains promises in three incremental steps:

  1. Synchronous operations are linked together in a chain, each operation depending on the previous one, and each potentially ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Pro iOS Persistence : Using Core Data

Pro iOS Persistence : Using Core Data

Michael Privat, Robert Warner

Publisher Resources

ISBN: 9781492048817Errata Page