package avnmp.java.tutorial.BuildingApplications;


public class LoadPacketAppBasic extends LoadGenAppBasicBase
{

    // This is the constructor for the packet. This active packet is created by load generator.

    public LoadPacketAppBasic() {
    }


    synchronized public void exec() {
        String NodeName = GetNodeName();

         if(NodeName.equals(Destination_Address)) {
              halt();
         }
    }
}