com.quotemedia.streamer.client.impl.StreamStats Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of streamerclient-java-core Show documentation
Show all versions of streamerclient-java-core Show documentation
Java streaming client that provides easy-to-use client APIs to connect and subscribe to QuoteMedia's market data streaming services. https://quotemedia.com/
The newest version!
package com.quotemedia.streamer.client.impl;
import java.util.concurrent.atomic.AtomicLong;
public final class StreamStats {
private final AtomicLong datamsgin = new AtomicLong();
public final long datamsgin() {
return this.datamsgin.get();
}
final void incdatamsgin() {
this.datamsgin.getAndIncrement();
}
private final AtomicLong datamsglag_ms = new AtomicLong();
public final long datamsglag_ms() {
return this.datamsglag_ms.get();
}
final void incdatamsglag_ms(final long val) {
this.datamsglag_ms.getAndAdd(val);
}
private final AtomicLong ctrlmsgin = new AtomicLong();
public final long ctrlmsgin() {
return this.ctrlmsgin.get();
}
final void incctrlmsgin() {
this.ctrlmsgin.getAndIncrement();
}
private final AtomicLong ctrlmsglag_ms = new AtomicLong();
public final long ctrlmsglag_ms() {
return this.ctrlmsglag_ms.get();
}
final void incctrlmsglag_ms(final long val) {
this.ctrlmsglag_ms.getAndAdd(val);
}
private final AtomicLong msgout = new AtomicLong();
public final long msgout() {
return this.msgout.get();
}
final void incmsgout() {
this.msgout.getAndIncrement();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy