Difference between revisions of "Engine Terms"
From RifidiWiki
 (New page: category:developerDoccategory:engineDoc ====Formatter==== The formatter handles any reader specific parsing that needs to be done to a raw message coming into (using the decode met...)  | 
				 (→Formatter)  | 
				||
| Line 1: | Line 1: | ||
[[category:developerDoc]][[category:engineDoc]]  | [[category:developerDoc]][[category:engineDoc]]  | ||
====Formatter====  | ====Formatter====  | ||
| − | The formatter handles any reader specific parsing that needs to be done to a raw message coming into (using the decode method) or going out of the reader (using the encode method).  For example,   | + | The formatter handles any reader specific parsing that needs to be done to a raw message coming into (using the decode method) or going out of the reader (using the encode method).  For an example, see [[Formatter]].  | 
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
====Handler Method====  | ====Handler Method====  | ||
Revision as of 19:24, 8 November 2007
Formatter
The formatter handles any reader specific parsing that needs to be done to a raw message coming into (using the decode method) or going out of the reader (using the encode method). For an example, see Formatter.
Handler Method
- A method within a reader's project that handles a specific command for a reader.  For example if a Rifidi Symbol reader receives a 
Set System ParameterCommand, the following method handles the logic for that command: 
	
public CommandObject setSystemParameter(CommandObject arg, AbstractReaderSharedResources asr) {
    byte[] setSystemParam = { 0x04, 0x06, 0x27, 0x00 };
    arg.getReturnValue().add(setSystemParam);
    return arg;
}