
io.tracee.contextlogger.builder.ContextLoggerBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tracee-context-logger-impl Show documentation
Show all versions of tracee-context-logger-impl Show documentation
Please refer to https://github.com/holisticon/tracee.
The newest version!
package io.tracee.contextlogger.builder;
/**
* The context logger builder interface used to enable fluent API.
* Created by Tobias Gindler, holisticon AG on 28.03.14.
*/
public interface ContextLoggerBuilder {
/**
* Switches fluent api to configuration mode.
* @return This instance cast as a ConfigBuilder
*/
ConfigBuilder config();
/**
* Creates the context logger instance and switches to context logger mode.
* @return This instance cast as a ContextLogger
*/
ContextLogger build();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy