Twidere-App-Android-Twitter.../twidere/src/main/kotlin/org/mariotaku/twidere/util/sync/ISyncAction.kt

13 lines
256 B
Kotlin

package org.mariotaku.twidere.util.sync
import androidx.annotation.WorkerThread
import java.io.IOException
/**
* Created by mariotaku on 2017/1/2.
*/
interface ISyncAction {
@Throws(IOException::class)
@WorkerThread
fun execute(): Boolean
}