|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
SynchronousRequestHandler
instead.
public interface SyncRequestHandler
Interface for synchronous RPC method call handlers.
Method Summary | |
---|---|
RpcResponse |
handleRequest(RpcCall call)
Deprecated. Invoked to handle a method call. |
Method Detail |
---|
RpcResponse handleRequest(RpcCall call) throws java.lang.Exception
This method is responsible for processing the method synchronously. The return value will be marshalled and sent back to the client immediately.
The caller is one of the underlying worker threads
(see HttpRpcProcessor.addWorker()
)
and as such should process the method as quickly as possible.
If processing might be length consider using
AsyncRequestHandler
and handing off the work to
an application thread.
If an exception is raised it will be returned to the caller as an RPC fault.
call
- The method call to be handled.
java.lang.Exception
- Implementations are permitted to raise
an exception as part of their processing.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |