diff --git a/docs/flow.md b/docs/flow.md index 81dab744a..16cdc415c 100644 --- a/docs/flow.md +++ b/docs/flow.md @@ -51,3 +51,25 @@ Flow.repeat(new FlowContext(),currentTime) .iterations(5) .subscribe(context -> console.log("Current time: " + context.pop("n/a"))); ``` + +## Dependency + +Add the following dependency to use `elemento-flow`: + +```xml + + + org.jboss.elemento + elemento-flow + 1.6.0 + +``` + +In your GWT module, inherit from `org.jboss.elemento.Flow`: + +```xml + + + + +```