mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
20 lines
430 B
Swift
20 lines
430 B
Swift
import Foundation
|
|
|
|
open class Table {
|
|
public final let valueBox: ValueBox
|
|
public final let table: ValueBoxTable
|
|
public final let useCaches: Bool
|
|
|
|
public init(valueBox: ValueBox, table: ValueBoxTable, useCaches: Bool) {
|
|
self.valueBox = valueBox
|
|
self.table = table
|
|
self.useCaches = useCaches
|
|
}
|
|
|
|
open func clearMemoryCache() {
|
|
}
|
|
|
|
open func beforeCommit() {
|
|
}
|
|
}
|