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

com.github.rougsig.actionsdispatcher.annotations.ActionElement.kt Maven / Gradle / Ivy

package com.github.rougsig.actionsdispatcher.annotations

import kotlin.reflect.KClass

@Retention(AnnotationRetention.SOURCE)
@Target(AnnotationTarget.CLASS)
annotation class ActionElement(
  val stateType: KClass<*>,
  val prefix: String = DEFAULT_PREFIX,
  val reducerName: String = DEFAULT_REDUCER_NAME,
  val receiverName: String = DEFAULT_RECEIVER_NAME
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy