Package com.igormaznitsa.jbbp.io
Interface JBBPOutVarProcessor
public interface JBBPOutVarProcessor
The Interface describes a class which can write some custom values into the context output stream (DSL command Var()).
- Since:
- 1.0
-
Method Summary
Modifier and TypeMethodDescriptionbooleanprocessVarOut(JBBPOut context, JBBPBitOutputStream outStream, Object... args) Process a DSL Var() command.
-
Method Details
-
processVarOut
boolean processVarOut(JBBPOut context, JBBPBitOutputStream outStream, Object... args) throws IOException Process a DSL Var() command.- Parameters:
context- the DSL context, must not be nulloutStream- the output stream for the context, must not be nullargs- optional arguments, can be null- Returns:
- true is to continue processing of DSL commands, false skip all commands till the End()
- Throws:
IOException- it should be thrown for transport errors
-