io.quarkus.funqy.lambda.FunqyResponseImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-funqy-amazon-lambda Show documentation
Show all versions of quarkus-funqy-amazon-lambda Show documentation
Amazon Lambda Binding for Quarkus Funqy framework
The newest version!
package io.quarkus.funqy.lambda;
import io.quarkus.funqy.runtime.FunqyServerResponse;
import io.smallrye.mutiny.Uni;
public class FunqyResponseImpl implements FunqyServerResponse {
protected Uni> output;
@Override
public Uni> getOutput() {
return output;
}
@Override
public void setOutput(Uni> output) {
this.output = output;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy