e-ntfy-android/app/src/main/java/io/heckel/ntfy/service/Connection.kt

9 lines
176 B
Kotlin
Raw Normal View History

2022-01-17 00:19:05 -05:00
package io.heckel.ntfy.service
interface Connection {
fun start()
fun close()
fun since(): Long
fun matches(otherSubscriptionIds: Collection<Long>): Boolean
}