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

com.teamscale.client.ProfilerInfo Maven / Gradle / Ivy

Go to download

A tiny service client that only supports Teamscale's the external upload interface and impacted-tests service.

There is a newer version: 34.2.0
Show newest version
package com.teamscale.client;

/** Information about the profiler including the process it is attached to as well as the configuration it is running with. */
public class ProfilerInfo {

	/** Information about the machine and process the profiler is running on. */
	public ProcessInformation processInformation;

	/** Concrete config that the profiler is running with. */
	public ProfilerConfiguration profilerConfiguration;

	public ProfilerInfo(ProcessInformation processInformation, ProfilerConfiguration profilerConfiguration) {
		this.processInformation = processInformation;
		this.profilerConfiguration = profilerConfiguration;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy