Uses of Class
io.ebean.Query.LockWait
-
Packages that use Query.LockWait Package Description io.ebean io.ebean.config.dbplatform Database platform specific support -
-
Uses of Query.LockWait in io.ebean
Methods in io.ebean that return Query.LockWait Modifier and Type Method Description Query.LockWait
Query. getForUpdateLockWait()
Return the "for update" wait mode to use.static Query.LockWait
Query.LockWait. valueOf(String name)
Returns the enum constant of this type with the specified name.static Query.LockWait[]
Query.LockWait. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.ebean with parameters of type Query.LockWait Modifier and Type Method Description Query<T>
ExpressionList. withLock(Query.LockType lockType, Query.LockWait lockWait)
Execute the query with the given lock type and lock wait.Query<T>
Query. withLock(Query.LockType lockType, Query.LockWait lockWait)
Execute the query with the given lock type and lock wait. -
Uses of Query.LockWait in io.ebean.config.dbplatform
Methods in io.ebean.config.dbplatform with parameters of type Query.LockWait Modifier and Type Method Description String
DatabasePlatform. fromForUpdate(Query.LockWait lockWait)
For update hint on the FROM clause (SQL server only).
-