Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md with Workflow steps feature. #92

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion ExampleSteps/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ For more details about the Gradle Shadow Plugin, refer to the [user documentatio

4. Once the `jar` is moved into the Data Studio addons folder, the _example steps_ will be listed in the left-hand side pane:

**Note:** From Data Studio version 2.6.2 onwards, custom steps will need to be enabled from the Workflow steps panel under the Space menu.

![Workflow Steps](readme-images/workflow-steps-pane.png)

### Linking the Example Step to a Source
Expand Down Expand Up @@ -109,4 +111,4 @@ In the [`IPGeolocationProcessor.java`](IPGeolocation/src/main/java/com/experian/
![Lang Step Settings](readme-images/lang-step-settings.png)

#### Concurrent asynchronous requests
Asynchronous requests are made using the `sendAsync()` method of `WebHttpClient`. The Java CompletableFuture handles the response. A CompletableFuture of type `WebHttpResponse` (i.e. `CompletableFuture<WebHttpResponse>`) allows Data Studio to continue execution and make other asynchronous calls. The `thenAccept()` method of the `CompletableFuture` defines what is done when the response is received.
Asynchronous requests are made using the `sendAsync()` method of `WebHttpClient`. The Java CompletableFuture handles the response. A CompletableFuture of type `WebHttpResponse` (i.e. `CompletableFuture<WebHttpResponse>`) allows Data Studio to continue execution and make other asynchronous calls. The `thenAccept()` method of the `CompletableFuture` defines what is done when the response is received.