Skip to content

Instantly share code, notes, and snippets.

@onmyway133
Created June 15, 2018 08:48
Show Gist options
  • Save onmyway133/9da90fbd6c9e7b172560055e0ea3d992 to your computer and use it in GitHub Desktop.
Save onmyway133/9da90fbd6c9e7b172560055e0ea3d992 to your computer and use it in GitHub Desktop.
public class AsyncStorage {
fileprivate let internalStorage: StorageAware
public let serialQueue: DispatchQueue
init(storage: StorageAware, serialQueue: DispatchQueue) {
self.internalStorage = storage
self.serialQueue = serialQueue
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment