Hi,
Thanks for the recent updates to the documentation, this is a useful utility!
I cannot find anything regarding a deleteAll API in the documentation and looking in the code it seems it is not supported:
@Override
public void deleteAll(Iterable<? extends XmlChannel> entities) {
throw new UnsupportedOperationException("Delete All is not supported.");
}
@Override
public void deleteAll() {
throw new UnsupportedOperationException("Delete All is not supported.");
}
Is there any reason why this is not supported? Are there plans to implement this in the future?
The reason I ask is that I would find it useful in a few use cases. Iterating over all channel names to delete each one individually is going to be painful for 1000+ PVs.
Hi,
Thanks for the recent updates to the documentation, this is a useful utility!
I cannot find anything regarding a deleteAll API in the documentation and looking in the code it seems it is not supported:
Is there any reason why this is not supported? Are there plans to implement this in the future?
The reason I ask is that I would find it useful in a few use cases. Iterating over all channel names to delete each one individually is going to be painful for 1000+ PVs.