Package com.peterhi.net.remote

Source Code of com.peterhi.net.remote.Server

package com.peterhi.net.remote;

import com.peterhi.net.rudp.RudpServer;

public class Server {

  public static void main(String[] args) throws Exception {
    RudpServer server = new RudpServer();
    RmRegistry registry = new RmRegistry(server, 15000);
    AboutMe am = new AboutMeImpl();
    registry.publish(AboutMe.class, "aboutMe", am);
    server.start(22222);
    Thread.sleep(8000);
    am.fireCallbackEvent("Callback occurred!");
    Thread.sleep(2000);
    am.fireCallbackEvent("Callback occurred 222!");
  }
 
}
TOP

Related Classes of com.peterhi.net.remote.Server

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.