public class Synthesis extends InternalModule
logger, state
MODULE_OFFLINE, MODULE_RUNNING
Constructor and Description |
---|
Synthesis() |
Modifier and Type | Method and Description |
---|---|
void |
powerOnSelfTest()
Perform a power-on self test by processing some example input data.
|
MaryData |
process(MaryData d)
Perform this module's processing on abstract "MaryData" input
d . |
void |
startup()
Allow the module to start up, performing whatever is necessary to become operational.
|
getInputType, getLocale, getOutputType, getState, inputType, name, outputType, shutdown
public void startup() throws Exception
MaryModule
startup
in interface MaryModule
startup
in class InternalModule
Exception
- Exceptionpublic void powerOnSelfTest() throws Error
powerOnSelfTest
in interface MaryModule
powerOnSelfTest
in class InternalModule
Error
- if the module does not work properly.public MaryData process(MaryData d) throws Exception
InternalModule
d
. Subclasses need to make sure that the
process()
method is thread-safe, because in server-mode, it will be called from different threads at the same
time. A sensible way to do this seems to be not to use any global or static variables, or to use them read-only.
process
in interface MaryModule
process
in class InternalModule
d
- doutputType()
encapsulating the processing result.
This method just returns its input. Subclasses should override this.
Exception
- ExceptionCopyright © 2000–2016 DFKI GmbH. All rights reserved.