文件名称:AsyncAwait:用Swift编写的一个简单的异步API
文件大小:9KB
文件格式:ZIP
更新时间:2024-05-20 09:09:41
Swift
异步等待 用Swift编写的一个简单的异步API。 我在看到Microsoft的Async / Await API之后创建了这个项目,并决定在Swift中对其进行简单的版本化。 请参阅: : 例子: func asyncMultiply ( a : Int , b : Int ) -> Task< Int> { // return type must be specified (i.e. Int) return Async { // anything in here will be executed asyncronously return a * b } } let task = asyncMultiply ( 101 , 4 ) // Create and execute an asyncronous task // Do other tasks
【文件预览】:
AsyncAwait-master
----AsyncAwait.xcodeproj()
--------project.pbxproj(10KB)
----README.md(723B)
----AsyncAwait()
--------Info.plist(911B)
--------AsyncAwait.swift(3KB)
--------AsyncAwait.playground()
--------main.swift(2KB)
--------AsyncAwait.h(502B)
----.gitignore(77B)