You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by pt...@apache.org on 2015/11/24 20:57:42 UTC

[2/4] storm git commit: update docs to show zero-arg config method

update docs to show zero-arg config method


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/8cb3dc3d
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/8cb3dc3d
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/8cb3dc3d

Branch: refs/heads/master
Commit: 8cb3dc3d2625b35172861a8c8cffc21d53403686
Parents: aff24fd
Author: Chuck Burgess <cb...@progressrail.com>
Authored: Fri Oct 30 08:17:34 2015 -0500
Committer: Chuck Burgess <cb...@progressrail.com>
Committed: Fri Nov 20 19:04:18 2015 -0600

----------------------------------------------------------------------
 external/flux/README.md | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/8cb3dc3d/external/flux/README.md
----------------------------------------------------------------------
diff --git a/external/flux/README.md b/external/flux/README.md
index c9b6ba0..c4ef145 100644
--- a/external/flux/README.md
+++ b/external/flux/README.md
@@ -433,6 +433,8 @@ bolts:
       - name: "withFoo"
         args:
           - "foo"
+      - name: "withNone"
+      # no args needed, so no "args" line
       - name: "withBar"
         args:
           - "bar"
@@ -446,6 +448,7 @@ The signatures of the corresponding methods are as follows:
 
 ```java
     public void withFoo(String foo);
+    public void withNone(); // method with zero arguments
     public void withBar(String bar);
     public void withFooBar(String foo, String bar);
 ```