Package eu.simuline.octave.exec
Interface WriteFunctor
-
- All Known Implementing Classes:
DataWriteFunctor
,ReaderWriteFunctor
public interface WriteFunctor
Function object that will execute writes to a Writer.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
doWrites(Writer writer)
Write the input to an eval().
-
-
-
Method Detail
-
doWrites
void doWrites(Writer writer) throws IOException
Write the input to an eval().- Parameters:
writer
- Writer to write to- Throws:
IOException
- on IO error from writer
-
-