mirror of
https://github.com/i2p/i2p.i2p.git
synced 2026-06-08 15:11:51 +00:00
* i2psnark:
- Defer piece loading until required
- Stub out Extension message support
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package org.klomp.snark;
|
||||
|
||||
/**
|
||||
* Callback used to fetch data
|
||||
* @since 0.8.2
|
||||
*/
|
||||
interface DataLoader
|
||||
{
|
||||
/**
|
||||
* This is the callback that PeerConnectionOut calls to get the data from disk
|
||||
* @return bytes or null for errors
|
||||
*/
|
||||
public byte[] loadData(int piece, int begin, int length);
|
||||
}
|
||||
Reference in New Issue
Block a user