com.epam.reportportal.elastic.ElasticSearchClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of service-jobs Show documentation
Show all versions of service-jobs Show documentation
EPAM Report portal. Service jobs
package com.epam.reportportal.elastic;
import com.epam.reportportal.log.LogMessage;
import java.util.List;
/**
* Client interface to work with Elasticsearch.
* @author Maksim Antonov
*/
public interface ElasticSearchClient {
void save(List logMessageList);
void deleteLogsByLaunchIdAndProjectId(Long launchId, Long projectId);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy