aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/utils/Interfaces.kt
blob: 1e42f59fb311d48195ae8ff9f99eb51c3db683e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package com.pitchedapps.frost.utils

import io.reactivex.subjects.Subject

/**
 * Created by Allan Wang on 2017-05-29.
 */
interface ObservableContainer<T> {
    val progressObservable: Subject<T>
}

interface KeyPairObservable : ObservableContainer<Pair<Int, Int>>