mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-03-21 15:10:01 +01:00
38 lines
667 B
Java
38 lines
667 B
Java
import java.nio.ByteBuffer;
|
|
import java.io.InputStream;
|
|
import java.io.IOException;
|
|
|
|
public class MessagePack {
|
|
|
|
static public Object unpack(InputStream source)
|
|
{
|
|
// FIXME not implemented yet
|
|
return null;
|
|
}
|
|
|
|
static public Object unpack(byte[] source, int len) throws IOException
|
|
{
|
|
// FIXME not implemented yet
|
|
return null;
|
|
}
|
|
|
|
static public Object unpack(ByteBuffer source) throws IOException
|
|
{
|
|
// FIXME not implemented yet
|
|
return null;
|
|
}
|
|
|
|
static public Object unpack(ByteBuffer[] source) throws IOException
|
|
{
|
|
// FIXME not implemented yet
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/*
|
|
public interface MessagePackable {
|
|
public void toMessagePack(Packer pk);
|
|
}
|
|
*/
|
|
|