Package org.exbin.xbup.core.remote
Interface XBCallHandler
-
public interface XBCallHandler
XBUP RPC procedure call handler interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
execute()
Performs execution of the handler.XBInput
getParametersInput()
Returns XBUP input stream handler for parameters.XBOutput
getResultOutput()
Returns XBUP output stream handler for result.
-
-
-
Method Detail
-
getParametersInput
@Nonnull XBInput getParametersInput() throws XBProcessingException, java.io.IOException
Returns XBUP input stream handler for parameters.- Returns:
- input
- Throws:
java.io.IOException
- if input/output errorXBProcessingException
-
getResultOutput
@Nonnull XBOutput getResultOutput() throws XBProcessingException, java.io.IOException
Returns XBUP output stream handler for result.- Returns:
- output
- Throws:
java.io.IOException
- if input/output errorXBProcessingException
-
execute
void execute() throws XBProcessingException, java.io.IOException
Performs execution of the handler.- Throws:
java.io.IOException
- if input/output errorXBProcessingException
-
-