view src/msgpack/test/TestMsgPackClient.java @ 1:830afc6475b0 draft

add sime files
author one
date Tue, 22 May 2012 02:45:56 +0900
parents d86770305c8b
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);
    }
}