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

com.cisco.trex.stateful.api.lowlevel.ASTFCmdKeepaliveMsg 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 ASTFCmdKeepaliveMsg class */
public class ASTFCmdKeepaliveMsg extends ASTFCmd {
  private static final String NAME = "keepalive";

  /**
   * construct
   *
   * @param msec
   */
  public ASTFCmdKeepaliveMsg(int msec) {
    super();
    fields.addProperty("name", NAME);
    fields.addProperty("msec", msec);
    stream = false;
  }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy