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

com.nitorcreations.nflow.rest.v1.msg.QueueStatistics Maven / Gradle / Ivy

There is a newer version: 3.3.0
Show newest version
package com.nitorcreations.nflow.rest.v1.msg;

import com.wordnik.swagger.annotations.ApiModel;
import com.wordnik.swagger.annotations.ApiModelProperty;

import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;

@ApiModel(value = "Global statistics for workflow instances.")
@SuppressFBWarnings(value="URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD", justification="jackson reads dto fields")
public class QueueStatistics {

  @ApiModelProperty(value = "Number for workflow instances.", required=true)
  public int count;
  @ApiModelProperty(value = "Maximum time (ms) currently queued workflow instances have been in queue.", required=false)
  public Long maxAge;
  @ApiModelProperty(value = "Minimum time (ms) currently queued workflow instances have been in queue.", required=false)
  public Long minAge;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy