Package com.morpheusdata.core.backup
Interface MorpheusBackupTypeService
- All Superinterfaces:
MorpheusDataQueryService<BackupType>
,MorpheusDataService<BackupType,
,BackupTypeIdentityProjection> MorpheusIdentityService<BackupTypeIdentityProjection>
public interface MorpheusBackupTypeService
extends MorpheusDataService<BackupType,BackupTypeIdentityProjection>, MorpheusIdentityService<BackupTypeIdentityProjection>
Context methods for interacting with
BackupTypes
in Morpheus- Since:
- 0.13.4
-
Method Summary
Modifier and TypeMethodDescriptionio.reactivex.rxjava3.core.Observable<BackupType>
listByCodes
(Collection<String> codes) Deprecated.io.reactivex.rxjava3.core.Observable<BackupType>
listById
(Collection<Long> ids) Deprecated.Methods inherited from interface com.morpheusdata.core.MorpheusDataQueryService
count, find, get, list, list, listById, listOptions, listOptions, search
Methods inherited from interface com.morpheusdata.core.MorpheusDataService
bulkCreate, bulkRemove, bulkSave, create, create, remove, remove, save, save
Methods inherited from interface com.morpheusdata.core.MorpheusIdentityService
getIdentityProperties, listIdentityProjections
-
Method Details
-
listById
@Deprecated(since="0.15.4") io.reactivex.rxjava3.core.Observable<BackupType> listById(Collection<Long> ids) Deprecated.Lists allBackupType
objects by a list of Identifiers. This is commonly used in sync / caching logic.- Parameters:
ids
- list ofBackupType
ids to fetch.- Returns:
- an RxJava Observable stream of
BackupType
objects for subscription.
-
listByCodes
@Deprecated(since="0.15.4") io.reactivex.rxjava3.core.Observable<BackupType> listByCodes(Collection<String> codes) Deprecated.Lists allBackupType
objects by a list of Codes. This is commonly used in sync / caching logic.- Parameters:
codes
- list ofBackupType
codes to fetch.- Returns:
- an RxJava Observable stream of
BackupType
objects for subscription.
-