blob: 76f0c09b58d9334f86d515c52e25d6752fc44c9a [file] [log] [blame]
// Copyright 2016 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package io.v.syncbase.internal;
public class Row {
public static native boolean Exists(String name, String batchHandle) throws VError;
public static native byte[] Get(String name, String batchHandle) throws VError;
public static native void Put(String name, String batchHandle, byte[] value) throws VError;
public static native void Delete(String name, String batchHandle) throws VError;
}