MessagePack-RPC の Java を試してみようと格闘している。 サーバ側のコード。 package jp.heavenshell; import org.msgpack.rpc.Server; import org.msgpack.rpc.loop.EventLoop; public class ServerApp { public String echo(String msg) { return "hello " + msg; } public int add(int x, int y) { return x + y; } public int sub(int x, int y) { return x - y; } public int multi(int x, int y) { return x * y; } public int div(int x, int y) {