view src/msgpack/test/TestMsgPackServer.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.Server;
import org.msgpack.rpc.loop.EventLoop;
 
public class TestMsgPackServer {
    public String hello(String msg, int a) {
        return msg;
    }
    
    public static void main(String[] args) throws Exception {
        EventLoop loop = EventLoop.defaultEventLoop();
  
        Server svr = new Server();
        svr.serve(new TestMsgPackServer());
        svr.listen(8888);
 
        loop.join();
    }
}