Action Check Builder
abstract class ActionCheckBuilder<Self : ActionCheckBuilder<Self, Res, WrappedRes, Check>, Res, WrappedRes, Check : Check<WrappedRes>>(from: From<Res>) : ActionBuilder
Content copied to clipboard
Constructors
Types
Link copied to clipboard
class ConditionWithoutRes<Self : ActionCheckBuilder<Self, Res, WrappedRes, Check>, Res, WrappedRes, Check : Check<WrappedRes>>(builder: Self, condition: Function1<Session, Validation<PrimitiveBool>>)
Content copied to clipboard
Link copied to clipboard
class ConditionWithRes<Self : ActionCheckBuilder<Self, Res, WrappedRes, Check>, Res, WrappedRes, Check : Check<WrappedRes>>(builder: Self, condition: Function2<WrappedRes, Session, Validation<PrimitiveBool>>)
Content copied to clipboard
Functions
Link copied to clipboard
fun checkIf(condition: BiPredicate<WrappedRes, Session>): ActionCheckBuilder.ConditionWithRes<Self, Res, WrappedRes, Check>
Content copied to clipboard
fun checkIf(condition: Predicate<Session>): ActionCheckBuilder.ConditionWithoutRes<Self, Res, WrappedRes, Check>
Content copied to clipboard
inline fun checkIf(crossinline condition: (Session) -> Boolean): ActionCheckBuilder.ConditionWithoutRes<Self, Res, WrappedRes, Check>
Content copied to clipboard
inline fun checkIf(crossinline condition: (WrappedRes, Session) -> Boolean): ActionCheckBuilder.ConditionWithRes<Self, Res, WrappedRes, Check>
Content copied to clipboard
fun checkIf(condition: String): ActionCheckBuilder.ConditionWithoutRes<Self, Res, WrappedRes, Check>
Content copied to clipboard