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

org.testcontainers.containers.output.BaseConsumer Maven / Gradle / Ivy

There is a newer version: 1.20.3
Show newest version
package org.testcontainers.containers.output;

import lombok.Getter;
import lombok.Setter;

import java.util.function.Consumer;

public abstract class BaseConsumer> implements Consumer {

    @Getter
    @Setter
    private boolean removeColorCodes = true;

    public SELF withRemoveAnsiCodes(boolean removeAnsiCodes) {
        this.removeColorCodes = removeAnsiCodes;
        return (SELF) this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy