Package org.thymeleaf.engine
Interface IThrottledTemplateWriterControl
-
- All Known Subinterfaces:
ISSEThrottledTemplateWriterControl
public interface IThrottledTemplateWriterControl
Interface modelling a series of methods for monitoring the status of the
Writer
being internally used for producing output in a throttled execution.Note this interface is internal and there is normally no reason why it should be directly used in user's code.
- Since:
- 3.0.4
- Author:
- Daniel Fernández
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getMaxOverflowSize()
int
getOverflowGrowCount()
int
getWrittenCount()
boolean
isOverflown()
boolean
isStopped()
-
-
-
Method Detail
-
isOverflown
boolean isOverflown() throws IOException
- Throws:
IOException
-
isStopped
boolean isStopped() throws IOException
- Throws:
IOException
-
getWrittenCount
int getWrittenCount()
-
getMaxOverflowSize
int getMaxOverflowSize()
-
getOverflowGrowCount
int getOverflowGrowCount()
-
-