aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/utils/Interfaces.kt
blob: 79904c6ecbe7bf8d184588bc4f476c5896a11d6f (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 observable: Subject<T>
}

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