Package org.jboss.as.cli.batch
Interface BatchManager
-
- All Known Implementing Classes:
DefaultBatchManager
public interface BatchManager- Author:
- Alexey Loubyansky
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanactivateHeldbackBatch(String name)booleanactivateNewBatch()booleandiscardActiveBatch()BatchgetActiveBatch()Set<String>getHeldbackNames()booleanholdbackActiveBatch(String name)booleanisBatchActive()booleanisHeldback(String name)
-
-
-
Method Detail
-
isHeldback
boolean isHeldback(String name)
-
activateNewBatch
boolean activateNewBatch()
-
activateHeldbackBatch
boolean activateHeldbackBatch(String name)
-
holdbackActiveBatch
boolean holdbackActiveBatch(String name)
-
discardActiveBatch
boolean discardActiveBatch()
-
isBatchActive
boolean isBatchActive()
-
getActiveBatch
Batch getActiveBatch()
-
-