Options options = new Options(args);
if(!options.load()) {
return;
}
MibewAgent agent = new MibewAgent(options.getAgentOptions(), new MibewAgentListener() {
@Override
protected void onlineStateChanged(boolean isOnline) {
System.out.println("now " + (isOnline ? "online" : "offline"));
}
});