view src/msgpack/test/TestMsgPackClient.java @ 3:178aeb91d108 draft default tip

add pom.xml
author one
date Mon, 04 Jun 2012 13:53:39 +0900
parents 830afc6475b0
children
line wrap: on
line source

package msgpack.test;

import org.msgpack.rpc.Client;
import org.msgpack.rpc.loop.EventLoop;
 
public class TestMsgPackClient {
    public static interface RPCInterface {
        String hello(String msg, int a);
    }
 
    public static void main(String[] args) throws Exception {
        EventLoop loop = EventLoop.defaultEventLoop();
        
        Client cli = new Client("localhost", 8888, loop);
        RPCInterface iface = cli.proxy(RPCInterface.class);
 
        String msg = iface.hello("hello", 1);
        System.out.println(msg);
    }
}