Skip to content

SQLiteAtomic

Jeff Hurray edited this page Apr 25, 2016 · 1 revision

##Overview SQLiteAtomic exposes an interface for performing atomic transactions on the cache and database.

####Transaction Synchronous block of code that guarantees all other access to the database and cache to be locked.

static func transaction(execute: Void -> Void)

public protocol SQLiteAtomic {
    static func transaction(execute: Void -> Void)
}

Clone this wiki locally