mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-22 14:20:20 +00:00
Calculate local unread count before applying notification
This commit is contained in:
18
submodules/Database/Table/Sources/Table.swift
Normal file
18
submodules/Database/Table/Sources/Table.swift
Normal file
@@ -0,0 +1,18 @@
|
||||
import Foundation
|
||||
import ValueBox
|
||||
|
||||
open class Table {
|
||||
public final let valueBox: ValueBox
|
||||
public final let table: ValueBoxTable
|
||||
|
||||
public init(valueBox: ValueBox, table: ValueBoxTable) {
|
||||
self.valueBox = valueBox
|
||||
self.table = table
|
||||
}
|
||||
|
||||
open func clearMemoryCache() {
|
||||
}
|
||||
|
||||
open func beforeCommit() {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user