Hi, all.
For example, I deploy a server application, and the service method is:
void hello(){
Thread.sleep(20000);//sleep 20 s
}
I use a client to connect to the server, and invoke the method, and I want to set the timeout parameter:
if this call is not return in 1000ms, abandon this call, or throw a runtime exception.
How to resolve this problem?
Thanks!

Reply With Quote