All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cisco.trex.stateful.api.lowlevel.ASTFCmdDelay Maven / Gradle / Ivy

There is a newer version: 1.69
Show newest version
package com.cisco.trex.stateful.api.lowlevel;

/** Java implementation for TRex python sdk ASTFCmdDelay class */
public class ASTFCmdDelay extends ASTFCmd {
  private static final String NAME = "delay";

  /**
   * construct
   *
   * @param usec
   */
  public ASTFCmdDelay(int usec) {
    super();
    fields.addProperty("name", NAME);
    fields.addProperty("usec", usec);
  }

  @Override
  public String getName() {
    return NAME;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy