All Downloads are FREE. Search and download functionalities are using the official Maven repository.

arch.ether.annotation.EtherData.kt Maven / Gradle / Ivy

Go to download

Ether is a framework using PubSub architectures that can be used as a replacement for common model-view archtectures such as MVP/MVC/MVVM etc.

There is a newer version: 1.0.4
Show newest version
package arch.ether.annotation

import kotlin.reflect.KClass

/**
 * Marks a class that can be published and subscribed through ether
 *
 * @param triggerType The base class of different triggers for the producer of this data
 */
@Target(AnnotationTarget.CLASS)
annotation class EtherData(val triggerType: KClass<*>)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy