This is an automated email from the ASF dual-hosted git repository.
dgrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk.git
The following commit(s) were added to refs/heads/master by this push:
new b3a3ef4 Update supported languages (#4241)
b3a3ef4 is described below
commit b3a3ef4d946a357699bfb6eea1a936ae002c95f1
Author: TPei <[email protected]>
AuthorDate: Wed Jan 30 17:47:13 2019 +0100
Update supported languages (#4241)
about.md language info was slightly outdated
---
docs/about.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/about.md b/docs/about.md
index eb95dfa..269f091 100644
--- a/docs/about.md
+++ b/docs/about.md
@@ -24,7 +24,7 @@ OpenWhisk is an event-driven compute platform also referred
to as Serverless com
Examples of events include changes to database records, IoT sensor readings
that exceed a certain temperature, new code commits to a GitHub repository, or
simple HTTP requests from web or mobile apps. Events from external and internal
event sources are channeled through a trigger, and rules allow actions to react
to these events.
-Actions can be small snippets of JavaScript or Swift code, or custom binary
code embedded in a Docker container. Actions in OpenWhisk are instantly
deployed and executed whenever a trigger fires. The more triggers fire, the
more actions get invoked. If no trigger fires, no action code is running, so
there is no cost.
+Actions can be small snippets of code (JavaScript, Swift and many other
languages are supported), or custom binary code embedded in a Docker container.
Actions in OpenWhisk are instantly deployed and executed whenever a trigger
fires. The more triggers fire, the more actions get invoked. If no trigger
fires, no action code is running, so there is no cost.
In addition to associating actions with triggers, it is possible to directly
invoke an action by using the OpenWhisk API, CLI, or iOS SDK. A set of actions
can also be chained without having to write any code. Each action in the chain
is invoked in sequence with the output of one action passed as input to the
next in the sequence.