Concurrency

Defining and Calling Asynchronous Functions

We use async keyword in place of before return arrow in function definition to make a function as a Asynchronour Function.

Just like throwing functions, and wa wanna a function is both asynchronous and throwing, we write async before throwing.

func listPhotos(inGallery name: String) async -> [String] {
    let result = // ... some asynchronous networking code ...
    return result
}

func listPhotos2(inGallery name: String) async throws -> [String] {
    let result = // ... some asynchronous networking code ...
    return result
}

And we use await keyword to describe we need to wait a return value whthin a function untill it returns.

let photoNames = await listPhotos(inGallery: "Summer Vacation")
let sortedNames = photoNames.sorted()
let name = sortedNames[0]
let photo = await downloadPhoto(named: name)
show(photo)

await will suspend the code that is excuting.

Calling Asynchronous Functions in Parallel

If we want to call a function in parallel, just like dispatch.async, we don’t want a function to suspend the code, but we need the async characteristic, we can use async keyword to decorate a value.

async let firstPhoto = downloadPhoto(named: photoNames[0])
async let secondPhoto = downloadPhoto(named: photoNames[1])
async let thirdPhoto = downloadPhoto(named: photoNames[2])

let photos = await [firstPhoto, secondPhoto, thirdPhoto]
show(photos)

The example above shows a circumstance just like using dispatch,group.

Tasks and Task Groups

There are interesting thing that is the task in swift.

We can incoporate Task and async there two characteristics to do a asynchronous task surprisingly easy.

We can handle a group of tasks even.

await withTaskGroup(of: Data.self) { taskGroup in
    let photoNames = await listPhotos(inGallery: "Summer Vacation")
    for name in photoNames {
        taskGroup.async { await downloadPhoto(named: name) }
    }
}
let newPhoto = // ... some photo data ...
let handle = Task {
    return await add(newPhoto, toGalleryNamed: "Spring Adventures")
}
let result = await handle.value

And we can control each task by change its status.

Actors

Actor is just like Class, we can define a new actor with properties and functions by using actor keyword

actor TemperatureLogger {
    let label: String
    var measurements: [Int]
    private(set) var max: Int

    init(label: String, measurement: Int) {
        self.label = label
        self.measurements = [measurement]
        self.max = measurement
    }
}

But actor is much safer than class in asynchronous function since it only agree one operation on its state at a time.

And for its private property, we must use await to access it, which is called as actor isolation.

Let’s think!

?著作權歸作者所有,轉載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末改备,一起剝皮案震驚了整個濱河市选脊,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖,帶你破解...
    沈念sama閱讀 216,372評論 6 498
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異,居然都是意外死亡,警方通過查閱死者的電腦和手機械馆,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,368評論 3 392
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來武通,“玉大人霹崎,你說我怎么就攤上這事∫背溃” “怎么了尾菇?”我有些...
    開封第一講書人閱讀 162,415評論 0 353
  • 文/不壞的土叔 我叫張陵,是天一觀的道長朗和。 經(jīng)常有香客問我错沽,道長,這世上最難降的妖魔是什么眶拉? 我笑而不...
    開封第一講書人閱讀 58,157評論 1 292
  • 正文 為了忘掉前任,我火速辦了婚禮憔儿,結果婚禮上忆植,老公的妹妹穿的比我還像新娘。我一直安慰自己谒臼,他們只是感情好朝刊,可當我...
    茶點故事閱讀 67,171評論 6 388
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著蜈缤,像睡著了一般拾氓。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上底哥,一...
    開封第一講書人閱讀 51,125評論 1 297
  • 那天咙鞍,我揣著相機與錄音,去河邊找鬼趾徽。 笑死续滋,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的孵奶。 我是一名探鬼主播疲酌,決...
    沈念sama閱讀 40,028評論 3 417
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了朗恳?” 一聲冷哼從身側響起湿颅,我...
    開封第一講書人閱讀 38,887評論 0 274
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎粥诫,沒想到半個月后肖爵,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 45,310評論 1 310
  • 正文 獨居荒郊野嶺守林人離奇死亡臀脏,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 37,533評論 2 332
  • 正文 我和宋清朗相戀三年劝堪,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片揉稚。...
    茶點故事閱讀 39,690評論 1 348
  • 序言:一個原本活蹦亂跳的男人離奇死亡秒啦,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出搀玖,到底是詐尸還是另有隱情余境,我是刑警寧澤,帶...
    沈念sama閱讀 35,411評論 5 343
  • 正文 年R本政府宣布灌诅,位于F島的核電站芳来,受9級特大地震影響,放射性物質發(fā)生泄漏猜拾。R本人自食惡果不足惜即舌,卻給世界環(huán)境...
    茶點故事閱讀 41,004評論 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望挎袜。 院中可真熱鬧顽聂,春花似錦、人聲如沸盯仪。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,659評論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽全景。三九已至耀石,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間爸黄,已是汗流浹背滞伟。 一陣腳步聲響...
    開封第一講書人閱讀 32,812評論 1 268
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留馆纳,地道東北人诗良。 一個月前我還...
    沈念sama閱讀 47,693評論 2 368
  • 正文 我出身青樓,卻偏偏與公主長得像鲁驶,于是被迫代替她去往敵國和親鉴裹。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 44,577評論 2 353

推薦閱讀更多精彩內(nèi)容

  • Process for JVM to Run a Program JVM(Java Virtual Machine...
    Lyudmilalala閱讀 213評論 0 0
  • Java is a multi threaded programming language. A multi-th...
    Hackjutsu閱讀 690評論 0 1
  • 我是黑夜里大雨紛飛的人啊 1 “又到一年六月,有人笑有人哭径荔,有人歡樂有人憂愁督禽,有人驚喜有人失落,有的覺得收獲滿滿有...
    陌忘宇閱讀 8,535評論 28 53
  • 人工智能是什么总处?什么是人工智能狈惫?人工智能是未來發(fā)展的必然趨勢嗎?以后人工智能技術真的能達到電影里機器人的智能水平嗎...
    ZLLZ閱讀 3,776評論 0 5
  • 首先介紹下自己的背景: 我11年左右入市到現(xiàn)在,也差不多有4年時間荸频,看過一些關于股票投資的書籍菱肖,對于巴菲特等股神的...
    瞎投資閱讀 5,722評論 3 8