Interface SpaceDeletionManager
- All Known Implementing Classes:
SpaceDeletionManagerImpl
public interface SpaceDeletionManager
Manager responsible for space deletion.
- Since:
- 9.0.0
-
Method Summary
Modifier and TypeMethodDescriptionvoid
deleteSpaceAsync
(long spaceId) Removes space asynchronously.void
deleteSpaceSync
(long spaceId) Removes space synchronously.
-
Method Details
-
deleteSpaceSync
void deleteSpaceSync(long spaceId) Removes space synchronously.- Parameters:
spaceId
- space id
-
deleteSpaceAsync
void deleteSpaceAsync(long spaceId) Removes space asynchronously. Space key can be re-used immediately, the space content will be removed in background. Instance restart will not prevent data removal.- Parameters:
spaceId
- space id
-