
io.github.fallwizard.rabbitmq.mgmt.model.MessageDetails Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rabbitmq-mgmt Show documentation
Show all versions of rabbitmq-mgmt Show documentation
Manage your RabbitMQ services programmatically
The newest version!
package io.github.fallwizard.rabbitmq.mgmt.model;
/**
* Statistics about message transmission.
*
* @author Richard Clayton (Berico Technologies)
*/
public class MessageDetails {
protected double rate;
protected long interval;
protected long last_event;
public double getRate() {
return rate;
}
public long getInterval() {
return interval;
}
public long getLastEvent() {
return last_event;
}
@Override
public String toString() {
return "MessageDetails [rate=" + rate + ", interval=" + interval
+ ", last_event=" + last_event + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy