Package | Description |
---|---|
monq.net |
Simple tcp server and clients.
|
monq.programs |
a collection of command line programs.
|
monq.stuff |
contains assorted stuff which does not fit anywhere else.
|
Modifier and Type | Class and Description |
---|---|
class |
DfaRunService
convenience class which makes a
DfaRun into a
service that can be returned by a ServiceFactory . |
Modifier and Type | Method and Description |
---|---|
Service |
ServiceFactory.createService(java.io.InputStream in,
java.io.OutputStream out,
java.lang.Object param)
creates a
Service that reads from the given input
stream, processes it and writes the result to the given output
stream. |
Service |
FilterServiceFactory.createService(java.io.InputStream controlIn,
java.io.OutputStream filterOut,
java.lang.Object param)
contacts an upstream server and connects a service to the
resulting input and the given output.
|
Modifier and Type | Method and Description |
---|---|
Service |
DictFilter.createService(java.io.InputStream in,
java.io.OutputStream out,
java.lang.Object p) |
Service |
Grep.createService(java.io.InputStream in,
java.io.OutputStream out,
java.lang.Object param) |
Modifier and Type | Interface and Description |
---|---|
interface |
Drainer
the dual to
Feeder . |
interface |
Feeder
Implementations of
Feeder start feeding data
to the OutputStream passed to setOut() as soon as their Runnable.run() method is
called. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractPipe
|
class |
CharSequenceFeeder
|
class |
DfaRunFeeder
|
class |
Exec
encapsulates a
java.lang.Process object, feeds it with
input and collects the output. |
class |
Pipe
implements a threadable pipe.
|
class |
ReaderFeeder
|