View deadlock.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Account: NSObject { | |
var balance: Double | |
var id: Int | |
override init(id: Int, balance: Double) { | |
self.id = id | |
self.balance = balance | |
} | |
func withdraw(amount: Double) { |
View memoryBarriersWithSync.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Processor #1: | |
while f == 0 { | |
OSMemoryBarrier() | |
print x | |
} | |
//Processor #2: | |
x = 42 | |
OSMemoryBarrier() | |
f = 1 |
View memoryBarriers.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Processor #1: | |
while f == 0 { | |
print x | |
} | |
//Processor #2: | |
x = 42 | |
f = 1 |
View raceCondition.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var x = 100 | |
func calculate() { | |
var y = 0 | |
for i in 1...1000 { | |
y += i | |
} | |
x = y | |
} |
View concurrentPrintDispatchQueue.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var title : [String] = [] | |
func write(_ text: String) { | |
let words = text.split(separator: " ") | |
DispatchQueue.main.async { | |
for word in words { | |
title.append(String(word)) | |
print(word) | |
} | |
} |
View concurrentPrintLock.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var title : [String] = [] | |
var lock = NSLock() | |
func write(_ text: String) { | |
let words = text.split(separator: " ") | |
lock.lock() | |
for word in words { | |
title.append(String(word)) | |
print(word) | |
} |
View concurrentprint.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func write(_ text: String) { | |
let words = text.split(separator: " ") | |
for word in words { | |
title.append(String(word)) | |
} | |
} | |
write("Concurrency with Swift:") // Thread 1 | |
write("What could possibly go wrong?") // Thread 2 |
View indexloop.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var messages: [Message] = [] | |
func dispatch(_ message: Message) { | |
messages.append(message) | |
dispatchToPlugins() | |
} | |
func dispatchToPlugins() { | |
while messages.count > 0 { | |
for plugin in plugins { |
View siriPhrases.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if let shortcut = voiceShortcutDataManager?.voiceShortcut(for: order) { | |
let editVoiceShortcutViewController = INUIEditVoiceShortcutViewController(voiceShortcut: shortcut) | |
editVoiceShortcutViewController.delegate = self | |
present(editVoiceShortcutViewController, animated: true, completion: nil) | |
} | |
else { | |
if let shortcut = INShortcut(intent: order.intent) { | |
let addVoiceShortcutVC = INUIAddVoiceShortcutViewController(shortcut: shortcut) | |
addVoiceShortcutVC.delegate = self | |
present(addVoiceShortcutVC, animated: true, completion: nil) |
View intentResponses.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public func confirm(intent: DanceIntent, completion: @escaping (DanceIntentResponse) -> Void) { | |
// Do Stuff | |
completion(DanceIntentResponse(code: .play, userActivity: nil)) | |
} | |
public func handle(intent: DanceIntent, completion: @escaping (DanceIntentResponse) -> Void) { | |
// Do Stuff | |
completion(DanceIntentResponse.success(dance: dance, playTime: 10)) | |
} |
NewerOlder