Package | Description |
---|---|
org.netbeans.api.extexecution.base.input |
The support API for processing the growing streams or files.
|
Modifier and Type | Method and Description |
---|---|
static LineProcessor |
LineProcessors.patternWaiting(Pattern pattern,
CountDownLatch latch)
Returns the processor that will wait for the line matching the pattern,
decreasing the latch when such line appears for the first time.
|
static LineProcessor |
LineProcessors.printing(PrintWriter out)
Returns the processor printing all lines passed for processing to
the given output writer.
|
static LineProcessor |
LineProcessors.proxy(LineProcessor... processors)
Returns the processor acting as a proxy.
|
Modifier and Type | Method and Description |
---|---|
static InputProcessor |
InputProcessors.bridge(LineProcessor lineProcessor)
Returns the processor converting characters to the whole lines passing
them to the given line processor.
|
static LineProcessor |
LineProcessors.proxy(LineProcessor... processors)
Returns the processor acting as a proxy.
|