Package org.onosproject.net.flow
Interface BatchOperationResult<T>
- 
- All Known Implementing Classes:
- CompletedBatchOperation
 
 public interface BatchOperationResult<T>Interface capturing the result of a batch operation.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Set<T>failedItems()Obtains a set of items which failed.booleanisSuccess()Returns whether the operation was successful.
 
- 
- 
- 
Method Detail- 
isSuccessboolean isSuccess() Returns whether the operation was successful.- Returns:
- true if successful, false otherwise
 
 - 
failedItemsjava.util.Set<T> failedItems() Obtains a set of items which failed.- Returns:
- a set of failures
 
 
- 
 
-