Skip to content

Commit 96045ef

Browse files
committed
./gradlew :temporal-sdk:spotlessApply
1 parent 6f83f6b commit 96045ef

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

temporal-sdk/src/main/java/io/temporal/workflow/DynamicSignalHandler.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
import io.temporal.common.converter.EncodedValues;
2424

2525
/**
26-
* Use DynamicSignalHandler to process any signal dynamically. This is useful for library-level
27-
* code and implementation of DSLs.
26+
* Use DynamicSignalHandler to process any signal dynamically. This is useful for library-level code
27+
* and implementation of DSLs.
2828
*
2929
* <p>Use {@link Workflow#registerListener(Object)} to register an implementation of the
3030
* DynamicSignalListener. Only one such listener can be registered per workflow execution.

temporal-sdk/src/main/java/io/temporal/workflow/DynamicUpdateHandler.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
import io.temporal.common.converter.EncodedValues;
2424

2525
/**
26-
* Use DynamicUpdateHandler to process any update dynamically. This is useful for library-level
27-
* code and implementation of DSLs.
26+
* Use DynamicUpdateHandler to process any update dynamically. This is useful for library-level code
27+
* and implementation of DSLs.
2828
*
2929
* <p>Use {@link Workflow#registerListener(Object)} to register an implementation of the
3030
* DynamicUpdateListener. Only one such listener can be registered per workflow execution.

temporal-sdk/src/main/java/io/temporal/workflow/ExternalWorkflowStub.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
import io.temporal.internal.sync.StubMarker;
2525

2626
/**
27-
* Supports signalling and cancelling any workflow by the workflow type and their id. This is
28-
* useful when an external workflow type is not known at compile time and to call workflows in
29-
* other languages.
27+
* Supports signalling and cancelling any workflow by the workflow type and their id. This is useful
28+
* when an external workflow type is not known at compile time and to call workflows in other
29+
* languages.
3030
*
3131
* @see Workflow#newUntypedExternalWorkflowStub(String)
3232
*/

temporal-sdk/src/main/java/io/temporal/workflow/package-info.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,10 @@
6565
* started, a new instance of the workflow implementation object is created. Then, one of the
6666
* methods (depending on which workflow type has been started) annotated with {@literal @}{@link
6767
* io.temporal.workflow.WorkflowMethod} is invoked. As soon as this method returns the workflow,
68-
* execution is closed. While the workflow execution is open, it can receive calls to signal, update,
69-
* and query methods. No additional calls to workflow methods are allowed. The workflow object is
70-
* stateful, so query, signal, and update methods can communicate with the other parts of the workflow
71-
* through workflow object fields.
68+
* execution is closed. While the workflow execution is open, it can receive calls to signal,
69+
* update, and query methods. No additional calls to workflow methods are allowed. The workflow
70+
* object is stateful, so query, signal, and update methods can communicate with the other parts of
71+
* the workflow through workflow object fields.
7272
*
7373
* <h3>Calling Activities</h3>
7474
*

0 commit comments

Comments
 (0)