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, searchMethods inherited from interface com.morpheusdata.core.MorpheusDataService
bulkCreate, bulkRemove, bulkSave, create, create, remove, remove, save, saveMethods 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 allBackupTypeobjects by a list of Identifiers. This is commonly used in sync / caching logic.- Parameters:
ids- list ofBackupTypeids to fetch.- Returns:
- an RxJava Observable stream of
BackupTypeobjects for subscription.
-
listByCodes
@Deprecated(since="0.15.4") io.reactivex.rxjava3.core.Observable<BackupType> listByCodes(Collection<String> codes) Deprecated.Lists allBackupTypeobjects by a list of Codes. This is commonly used in sync / caching logic.- Parameters:
codes- list ofBackupTypecodes to fetch.- Returns:
- an RxJava Observable stream of
BackupTypeobjects for subscription.
-