@groovy.transform.CompileStatic interface RxQuery<T>
Represents a reactive query implementation in RxGORM
Type Params | Return Type | Name and description |
---|---|---|
|
abstract rx.Observable<java.lang.Number> |
deleteAll() delete all entities matching this query |
|
abstract rx.Observable<T> |
findAll()
|
|
abstract rx.Observable<T> |
findAll(java.util.Map<java.lang.String, java.lang.Object> queryArguments)
|
|
abstract rx.Observable<T> |
singleResult()
|
|
abstract rx.Observable<T> |
singleResult(java.util.Map<java.lang.String, java.lang.Object> queryArguments)
|
|
abstract rx.Observable<java.lang.Number> |
updateAll(java.util.Map properties) update all entities matching this query with the given properties |
delete all entities matching this query
queryArguments
- The query arguments. These are things like the max, offset etc.
queryArguments
- The query arguments. These are things like the max, offset etc.update all entities matching this query with the given properties
properties
- The properties