implemented DataStoreGetFunction callback

This commit is contained in:
Grant Limberg
2015-04-24 19:11:49 -07:00
parent 4137246653
commit d5fc2b39aa
2 changed files with 49 additions and 8 deletions

View File

@ -29,10 +29,10 @@ package com.zerotierone.sdk;
import java.nio.ByteBuffer;
public interface DataStoreGetListener {
public int onDataStoreGet(Node node,
public long onDataStoreGet(
String name,
ByteBuffer buffer,
byte[] out_buffer,
long bufferSize,
long index,
Long out_objectSize);
long bufferIndex,
long[] out_objectSize);
}