Package org.exbin.xbup.core.remote
Interface XBCall
-
@ParametersAreNonnullByDefault public interface XBCall
XBUP RPC procedure call interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
call(XBInput parameters)
Invocates for procedure call.void
result(XBOutput result)
Executes if call was invoked properly.
-
-
-
Method Detail
-
call
void call(XBInput parameters) throws XBProcessingException, java.io.IOException
Invocates for procedure call.- Parameters:
parameters
- procedure parameters data- Throws:
java.io.IOException
- if input/output errorXBProcessingException
-
result
void result(XBOutput result) throws XBProcessingException, java.io.IOException
Executes if call was invoked properly.- Parameters:
result
- handler for procedure result data- Throws:
java.io.IOException
- if input/output errorXBProcessingException
-
-