com.dailystudio.devbricksx.annotations.InMemoryManager.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devbricksx-kotlin-annotations Show documentation
Show all versions of devbricksx-kotlin-annotations Show documentation
DevBricks eXetrems Kotlin Annotations
package com.dailystudio.devbricksx.annotations
import kotlin.reflect.KClass
enum class Ordering {
Ascending,
Descending
}
@Retention(AnnotationRetention.SOURCE)
@Target(AnnotationTarget.CLASS)
annotation class InMemoryManager(
val key: KClass<*>,
val ordering: Ordering = Ordering.Ascending
)