public interface SupportsDeletingById
(Note: this interface is not intended to be implemented by user code)
Modifier and Type | Method and Description |
---|---|
void |
deleteById(String id)
Deletes a resource from Azure, identifying it by its resource ID.
|
rx.Completable |
deleteByIdAsync(String id)
Asynchronously delete a resource from Azure, identifying it by its resource ID.
|
ServiceFuture<Void> |
deleteByIdAsync(String id,
ServiceCallback<Void> callback)
Asynchronously delete a resource from Azure, identifying it by its resource ID.
|
void deleteById(String id)
id
- the resource ID of the resource to deleteServiceFuture<Void> deleteByIdAsync(String id, ServiceCallback<Void> callback)
id
- the resource ID of the resource to deletecallback
- the callback on success or failurerx.Completable deleteByIdAsync(String id)
id
- the resource ID of the resource to deleteCopyright © 2019. All rights reserved.