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

me.snowdrop.istio.mixer.adapter.stackdriver.DoneableStackdriver Maven / Gradle / Ivy

package me.snowdrop.istio.mixer.adapter.stackdriver;

import io.fabric8.kubernetes.api.builder.Function;
import io.fabric8.kubernetes.api.model.Doneable;

public class DoneableStackdriver extends StackdriverFluentImpl implements Doneable{

    private final StackdriverBuilder builder;
    private final Function function;

    public DoneableStackdriver(Function function){
            super();this.builder=new StackdriverBuilder(this);this.function=function;
    }
    public DoneableStackdriver(Stackdriver item,Function function){
            super(item);this.builder=new StackdriverBuilder(this, item);this.function=function;
    }
    public DoneableStackdriver(Stackdriver item){
            super(item);this.builder=new StackdriverBuilder(this, item);this.function=new Function() {
    public Stackdriver apply(Stackdriver item) {
        return item;
    }
}
;
    }

    public Stackdriver done(){
             return function.apply(builder.build());
    }




}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy