
com.taboola.async_profiler.api.facade.ProfileResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of async-profiler-actuator-endpoint Show documentation
Show all versions of async-profiler-actuator-endpoint Show documentation
Async Profiler Actuator Endpoint
package com.taboola.async_profiler.api.facade;
import java.io.InputStream;
import java.time.LocalDateTime;
import lombok.Value;
@Value
public class ProfileResult implements AutoCloseable {
ProfileRequest request;
InputStream resultInputStream;
LocalDateTime startTime;
LocalDateTime endTime;
@Override
public void close() throws Exception {
if (resultInputStream != null) {
resultInputStream.close();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy