Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am kevc on github.
  • I am kevc (https://keybase.io/kevc) on keybase.
  • I have a public key ASAO4ksBgdO10hwZ5JmrHpNytwXFsTUjngUZz-yP3nggrAo

To claim this, I am signing this object:

@kevc
kevc / RPM.kt
Created April 30, 2016 15:08
The interface required to define a Reactive Presentation Model
interface Model<I : Sources, O : Sinks> {
fun setUp(sources: I): O
fun tearDown()
interface Sources
interface Sinks
}