Interface BackupRestoreConsumer<T>
- 
- Functional Interface:
 - This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
 
@FunctionalInterface public interface BackupRestoreConsumer<T>
Regular consumer but allows to throw BackupRestoreException exceptions.- Since:
 - 7.20.0
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaccept(T t) 
 - 
 
- 
- 
Method Detail
- 
accept
void accept(T t) throws BackupRestoreException
- Throws:
 BackupRestoreException
 
 - 
 
 -