-Dcom.ibm.CORBA.AllowUserInterrupt
When this property is set to true, remote method calls can be interrupted with a Thread.interrupt() call.
- -Dcom.ibm.CORBA.AllowUserInterrupt=true
- When set, the thread that is waiting for the call to return is stopped. Interrupting a call in
this way causes a RemoteException to be thrown, containing a
CORBA.NO_RESPONSE
runtime exception with theRESPONSE_INTERRUPTED
minor code. If this property is not set, the default behavior is to ignore any Thread.interrupt() calls that are received while the ORB waits for the call to finish.