Update README.adoc

This commit is contained in:
Oleg Zhurakousky
2019-08-14 20:12:08 +02:00
committed by GitHub
parent 2bcc4223b9
commit 2d405d96b3

View File

@@ -54,9 +54,9 @@ In the nutshell Spring Cloud Function provides the following features:
* _Support for reactive function with multiple inputs and outputs allowing merging, joining and other complex streaming operation to be handled by functions._
* _Transparent type conversion of inputs and outputs._
* _Packaging functions for deployments, specific to the target platform (e.g., Project Riff, AWS Lambda and more)_
* _ Adapters to expose function to the outside world as HTTP endpoints etc.
* _ Deploying a JAR file containing such an application context with an isolated classloader, so that you can pack them together in a single JVM.
* _Compiling strings which are Java function bodies into bytecode, and then turning them into `@Beans` that can be wrapped as above.
* _Adapters to expose function to the outside world as HTTP endpoints etc._
* _Deploying a JAR file containing such an application context with an isolated classloader, so that you can pack them together in a single JVM._
* _Compiling strings which are Java function bodies into bytecode, and then turning them into `@Beans` that can be wrapped as above._
* _Adapters for https://github.com/spring-cloud/spring-cloud-function/tree/master/spring-cloud-function-adapters/spring-cloud-function-adapter-aws[AWS Lambda], https://github.com/spring-cloud/spring-cloud-function/tree/master/spring-cloud-function-adapters/spring-cloud-function-adapter-azure[Azure], https://github.com/spring-cloud/spring-cloud-function/tree/master/spring-cloud-function-adapters/spring-cloud-function-adapter-openwhisk[Apache OpenWhisk] and possibly other "serverless" service providers._
== Getting Started