Skip to content

Instantly share code, notes, and snippets.

@orcchg
Created June 26, 2021 07:49
Show Gist options
  • Select an option

  • Save orcchg/e45b7113b3eb349803ccad08f2be59fe to your computer and use it in GitHub Desktop.

Select an option

Save orcchg/e45b7113b3eb349803ccad08f2be59fe to your computer and use it in GitHub Desktop.
import io.reactivex.Maybe
import io.reactivex.Single
interface StockListInteractor {
fun stocks(): Single<List<Stock>>
fun stock(ticker: String): Maybe<Stock>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment