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

com.taboola.async_profiler.api.facade.ProfileResult Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
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