
com.octo.android.robospice.command.RemoveAllDataFromCacheCommand Maven / Gradle / Ivy
package com.octo.android.robospice.command;
import com.octo.android.robospice.SpiceManager;
import com.octo.android.robospice.SpiceService;
public class RemoveAllDataFromCacheCommand extends SpiceManager.SpiceManagerCommand {
public RemoveAllDataFromCacheCommand(SpiceManager spiceManager) {
super(spiceManager);
}
@Override
protected Void executeWhenBound(SpiceService spiceService) {
spiceService.removeAllDataFromCache();
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy