Call Definition
abstract class CallDefinition<Self : CallDefinition<Self, Req, Res, WrappedRes, Wrapped, Check>, Req, Res, WrappedRes, Wrapped : CallDefinition<Wrapped, Req, Res>, Check : CheckWithSelfType<WrappedRes, Check>> : ActionCheckBuilder<Self, Res, WrappedRes, Check>
Content copied to clipboard
Constructors
Functions
Link copied to clipboard
inline fun callOptions(crossinline callOptions: (Session) -> CallOptions): Self
Content copied to clipboard
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
Link copied to clipboard