com.github.bingoohuang.blackcat.instrument.utils.Tuple Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blackcat-instrument Show documentation
Show all versions of blackcat-instrument Show documentation
agent that monitor a machine's memory, cpu, processes and etc.
The newest version!
package com.github.bingoohuang.blackcat.instrument.utils;
import lombok.AllArgsConstructor;
import lombok.Data;
@Data @AllArgsConstructor
public class Tuple {
public final X x;
public final Y y;
}