README.md to README.adoc

This commit is contained in:
markfisher
2016-10-02 10:32:23 -04:00
parent 44704d43d8
commit 971cc1ebd8

View File

@@ -1,29 +1,29 @@
Register a Function: == Register a Function:
``` ----
./register.sh -n uppercase -f "f->f.map(s->s.toString().toUpperCase())" ./register.sh -n uppercase -f "f->f.map(s->s.toString().toUpperCase())"
``` ----
Run a Stream Processing Microservice using that Function: == Run a Stream Processing Microservice using that Function:
``` ----
./stream.sh -i words -o uppercaseWords -f uppercase ./stream.sh -i words -o uppercaseWords -f uppercase
``` ----
Run a REST Microservice using that Function: == Run a REST Microservice using that Function:
``` ----
./web.sh -p /words -f uppercase ./web.sh -p /words -f uppercase
``` ----
To compose Functions: == Compose Functions:
(assuming the `uppercase` function was already registered as above) (assuming the `uppercase` function was already registered as above)
``` ----
./register.sh -n pluralize -f "f->f.map(s->s+\"S\")" ./register.sh -n pluralize -f "f->f.map(s->s+\"S\")"
./web.sh -p /words -f uppercase,pluralize ./web.sh -p /words -f uppercase,pluralize
``` ----
(more docs soon) (more docs soon)