mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
12 lines
239 B
Java
12 lines
239 B
Java
package com.kunzisoft.keepass.stream;
|
|
|
|
import java.io.IOException;
|
|
|
|
public interface ActionReadBytes {
|
|
/**
|
|
* Called after each buffer fill
|
|
* @param buffer filled
|
|
*/
|
|
void doAction(byte[] buffer) throws IOException;
|
|
}
|