From 1916e195fb4407bcda8a1639bd11c6a7293acab5 Mon Sep 17 00:00:00 2001 From: kammaljeeexp <54073026+kammaljeeexp@users.noreply.github.com> Date: Thu, 20 Jan 2022 12:31:44 +0000 Subject: [PATCH] Update README.md with Workflow steps feature. Custom steps now need to be enabled from the Workflow steps screen before they are visible. --- ExampleSteps/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ExampleSteps/README.md b/ExampleSteps/README.md index c5c171d..eaad1dc 100644 --- a/ExampleSteps/README.md +++ b/ExampleSteps/README.md @@ -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 @@ -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`) 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. \ No newline at end of file +Asynchronous requests are made using the `sendAsync()` method of `WebHttpClient`. The Java CompletableFuture handles the response. A CompletableFuture of type `WebHttpResponse` (i.e. `CompletableFuture`) 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.