All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.baltoro.client.LocalDBBinary Maven / Gradle / Ivy

There is a newer version: 4.0.12
Show newest version
package io.baltoro.client;

import io.baltoro.obj.Base;

public class LocalDBBinary
{

	public static void save(Base base, byte[] bytes)
	{
		
	}
	
	public static void saveChunk(Base base, byte[] bytes, int index, int len)
	{
		
	}
	
	public static void append(Base base, byte[] bytes)
	{
		
	}
	
	public static byte[] readAll(Base base)
	{
		return null;
	}
	
	public static byte[] readUntil(Base base, byte[] matchBytes)
	{
		return null;
	}
	
	
	public static byte[] readChunk(Base base, int index, int len)
	{
		return null;
	}
	
	
	public static int size(Base base)
	{
		return -1;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy