ziggy42
03/20/2018, 2:51 PM@Target(AnnotationTarget.FUNCTION)
@Retention(AnnotationRetention.RUNTIME)
@MustBeDocumented
annotation class Listener
And some functions in some services like:
@Service
class MyService {
@Listener
fun onNewThing(thing: Thing) {
...
}
}