public class LoadPacketAppBasic extends LoadGenAppBasicBase
{
public LoadPacketAppBasic()
{
}
// This method is the 'main'
method within the Magician active packet. It is designed to be
// overridden when creating
new active packets.
synchronized public void
exec() {
String NodeName = GetNodeName();
if(NodeName.equals(Destination_Address))
{
halt();
}
}
}