public interface IDisposition
| Modifier and Type | Method and Description |
|---|---|
void |
Close()
Cleanup any resources you allocated during construction
or ReadFromFile
Note: Close may be called more than once on the same object,
but once it is called, Dispose will not be called again.
|
void |
Dispose(CMessage oMessage)
Do whatever the disposition type does with the message.
|
void |
ReadFromFile(java.lang.String sFileName)
Read the settings for this disposition from a file.
|
void ReadFromFile(java.lang.String sFileName)
throws ResponseMasterException
sFileName - The name of the file to readResponseMasterException - if there is a problemvoid Dispose(CMessage oMessage) throws ResponseMasterException
oMessage - The message to processResponseMasterException - if there is a problemvoid Close()