Actions1Builder

open class Actions1Builder<I, O>(val actions: MutableList<Action1<I, O>> = mutableListOf()) : ActionsBuilder<Action1<I, O>, (I) -> O>

Constructors

Link copied to clipboard
constructor(actions: MutableList<Action1<I, O>> = mutableListOf())

Functions

Link copied to clipboard
open override fun on(name: String, key: String, handler: (I) -> O): Action1<I, O>
Link copied to clipboard
fun onAdd(handler: (I) -> O): Action1<I, O>
fun onAdd(entity: String, handler: (I) -> O): Action1<I, O>
Link copied to clipboard
fun onAddAll(handler: (I) -> O): Action1<I, O>
fun onAddAll(col: Collection<Any?>, handler: (I) -> O): Action1<I, O>
Link copied to clipboard
fun onCancel(handler: (I) -> O): Action1<I, O>
Link copied to clipboard
fun onCreate(handler: (I) -> O): Action1<I, O>
Link copied to clipboard
fun onDelete(handler: (I) -> O): Action1<I, O>
Link copied to clipboard
fun onDeleteAll(handler: (I) -> O): Action1<I, O>
fun onDeleteAll(col: Collection<Any?>, handler: (I) -> O): Action1<I, O>
Link copied to clipboard
fun onDuplicate(handler: (I) -> O): Action1<I, O>
Link copied to clipboard
fun onEdit(handler: (I) -> O): Action1<I, O>
Link copied to clipboard
fun onGoBack(handler: (I) -> O): Action1<I, O>
Link copied to clipboard
fun onNo(handler: (I) -> O): Action1<I, O>
Link copied to clipboard
fun onOk(handler: (I) -> O): Action1<I, O>
Link copied to clipboard
fun onRetry(handler: (I) -> O): Action1<I, O>
Link copied to clipboard
fun onUpdate(handler: (I) -> O): Action1<I, O>
Link copied to clipboard
fun onView(handler: (I) -> O): Action1<I, O>
Link copied to clipboard
fun onYes(handler: (I) -> O): Action1<I, O>

Properties

Link copied to clipboard