Data Set Complete Registration Collection Repository
Functions
Get the count of elements. Important: this is a blocking method and it should not be executed in the main thread. Consider the asynchronous version .count.
Get the list of objects in a synchronous way. Important: this is a blocking method and it should not be executed in the main thread. Consider the asynchronous version .get.
Check if selection of objects with applied filters is empty in a synchronous way. Important: this is a blocking method and it should not be executed in the main thread. Consider the asynchronous version .isEmpty.
Uploads the resources in scope in a synchronous way. Important: this is a blocking method and it should not be executed in the main thread. Consider the asynchronous version .upload. The method will finish as soon as the whole upload an processing is finished.
Get the objects in scope in an asynchronous way, returning a Single<List>
.
Uses Paging3 library and return a Flow
Get a ReadOnlyObjectRepository pointing to the first element in the list.
Uploads the resources in scope in an asynchronous way. An Observable<D2Progress>
is returned, which will emit progress until the whole upload is finished and the Observable
is completed.