package com.peterhi.working;
import com.peterhi.working.Registry;
public class Responder {
public static void main(String[] args) throws Exception {
Registry registry = new Registry(22222);
registry.run();
AboutMe aboutMe = new AboutMeImpl(registry);
registry.publish("aboutMe", AboutMe.class, aboutMe);
Thread.sleep(5000);
aboutMe.fireCallback("HUGO is the best!");
Thread.sleep(5000);
aboutMe.fireCallback("HUGO is the best 2!");
}
}