我在Android设备上做了这个简单的远程容器代码,一般来说效果很好。
但是当我输入主容器的错误IP地址时,它会尝试连接(几分钟),方法OnFailure
根本不执行。
我真的需要让它在几秒钟后停止尝试连接。
final Properties profile = new Properties();
profile.setProperty(Profile.MAIN_HOST,MainIp);
profile.setProperty(Profile.MAIN_PORT, "1099");
profile.setProperty(Profile.JVM, Profile.ANDROID);
runtimeServiceBinder.startAgentContainer(profile, new RuntimeCallback<Void>(){
@Override
public void onFailure(Throwable arg0) {
Toast.makeText(MainActivity.this,"Fail !! ",Toast.LENGTH_SHORT).show();
}
@Override
public void onSuccess(Void arg0) {
Toast.makeText(MainActivity.this,"Done !!",Toast.LENGTH_SHORT).show();
}
});