rcs.nml
Class RCS_CMD_MSG

java.lang.Object
  extended by rcs.nml.NMLmsg
      extended by rcs.nml.RCS_CMD_MSG
All Implemented Interfaces:
java.lang.Cloneable

public class RCS_CMD_MSG
extends NMLmsg

Base class for NML command messages.

 Related Documentation:
 RCS Library, NML Programmers Guide (Java Version)

 


Field Summary
 int serial_number
          Applications ussually increment the serial number each time a command is sent, this number is ussually echoed back in the status message so that supervisors can tell which command is currently executing or just completed.
 
Fields inherited from class rcs.nml.NMLmsg
size, type
 
Constructor Summary
protected RCS_CMD_MSG()
           
  RCS_CMD_MSG(int _type)
           
 
Method Summary
 void update(NMLFormatConverter nml_fc)
          This function should be overloaded to provide a function that will convert this message to a nuetral format that can be used, by many different types of hosts.
 
Methods inherited from class rcs.nml.NMLmsg
clone
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

serial_number

public int serial_number
Applications ussually increment the serial number each time a command is sent, this number is ussually echoed back in the status message so that supervisors can tell which command is currently executing or just completed.

Constructor Detail

RCS_CMD_MSG

protected RCS_CMD_MSG()

RCS_CMD_MSG

public RCS_CMD_MSG(int _type)
Method Detail

update

public void update(NMLFormatConverter nml_fc)
Description copied from class: NMLmsg
This function should be overloaded to provide a function that will convert this message to a nuetral format that can be used, by many different types of hosts.

Overrides:
update in class NMLmsg
Parameters:
nml_fc - NMLFormatConverter that provides functions for updating all of the basic data types.