xworker.statistics.flow.KeyData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xworker_app Show documentation
Show all versions of xworker_app Show documentation
XWorker app model liberary.
The newest version!
package xworker.statistics.flow;
public class KeyData {
public String key;
public long count;
public KeyData(){
}
public KeyData(String key, long count){
this.key = key;
this.count = count;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy