toggle menu
objectbox-rxjava3
5.0.0
jvm
switch theme
search in API
objectbox-rxjava3
/
io.objectbox.rx3
/
RxQuery
Rx
Query
abstract
class
RxQuery
Static methods to Rx-ify ObjectBox queries.
Members
Constructors
Rx
Query
Link copied to clipboard
constructor
(
)
Functions
flowable
One
By
One
Link copied to clipboard
open
fun
<
T
>
flowableOneByOne
(
query
:
Query
<
T
>
)
:
Flowable
<
T
>
open
fun
<
T
>
flowableOneByOne
(
query
:
Query
<
T
>
,
strategy
:
BackpressureStrategy
)
:
Flowable
<
T
>
The returned Flowable emits Query results one by one.
observable
Link copied to clipboard
open
fun
<
T
>
observable
(
query
:
Query
<
T
>
)
:
Observable
<
List
<
T
>
>
The returned Observable emits Query results as Lists.
single
Link copied to clipboard
open
fun
<
T
>
single
(
query
:
Query
<
T
>
)
:
Single
<
List
<
T
>
>
The returned Single emits one Query result as a List.