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

com.fnproject.springframework.function.SpringCloudFunctionFeature Maven / Gradle / Ivy

There is a newer version: 1.0.196
Show newest version
package com.fnproject.springframework.function;

import com.fnproject.fn.api.FunctionInvoker;
import com.fnproject.fn.api.RuntimeContext;
import com.fnproject.fn.api.RuntimeFeature;

/**
 *
 * The SpringCloudFunctionFeature enables a function to be run with a spring cloud function configuration
 *
 * Created on 10/09/2018.
 * 

* (c) 2018 Oracle Corporation */ public class SpringCloudFunctionFeature implements RuntimeFeature { @Override public void initialize(RuntimeContext ctx) { ctx.addInvoker(new SpringCloudFunctionInvoker(ctx.getMethod().getTargetClass()),FunctionInvoker.Phase.Call); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy