Annotation Interface NoReply
Designates a remote method which doesn't block reading a reply or acknowledgment. The method
can only return void, and any exception thrown from the implementation is treated as
uncaught
.
A NoReply
method implementation is run in the same thread that processes incoming
requests for a particular socket. Therefore, the implementation should finish quickly or
else continue execution in another thread.