Skip to content

Commit

Permalink
./gradlew :temporal-sdk:spotlessApply
Browse files Browse the repository at this point in the history
  • Loading branch information
dandavison committed Jul 31, 2024
1 parent 6f83f6b commit 96045ef
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
import io.temporal.common.converter.EncodedValues;

/**
* Use DynamicSignalHandler to process any signal dynamically. This is useful for library-level
* code and implementation of DSLs.
* Use DynamicSignalHandler to process any signal dynamically. This is useful for library-level code
* and implementation of DSLs.
*
* <p>Use {@link Workflow#registerListener(Object)} to register an implementation of the
* DynamicSignalListener. Only one such listener can be registered per workflow execution.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
import io.temporal.common.converter.EncodedValues;

/**
* Use DynamicUpdateHandler to process any update dynamically. This is useful for library-level
* code and implementation of DSLs.
* Use DynamicUpdateHandler to process any update dynamically. This is useful for library-level code
* and implementation of DSLs.
*
* <p>Use {@link Workflow#registerListener(Object)} to register an implementation of the
* DynamicUpdateListener. Only one such listener can be registered per workflow execution.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
import io.temporal.internal.sync.StubMarker;

/**
* Supports signalling and cancelling any workflow by the workflow type and their id. This is
* useful when an external workflow type is not known at compile time and to call workflows in
* other languages.
* Supports signalling and cancelling any workflow by the workflow type and their id. This is useful
* when an external workflow type is not known at compile time and to call workflows in other
* languages.
*
* @see Workflow#newUntypedExternalWorkflowStub(String)
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@
* started, a new instance of the workflow implementation object is created. Then, one of the
* methods (depending on which workflow type has been started) annotated with {@literal @}{@link
* io.temporal.workflow.WorkflowMethod} is invoked. As soon as this method returns the workflow,
* execution is closed. While the workflow execution is open, it can receive calls to signal, update,
* and query methods. No additional calls to workflow methods are allowed. The workflow object is
* stateful, so query, signal, and update methods can communicate with the other parts of the workflow
* through workflow object fields.
* execution is closed. While the workflow execution is open, it can receive calls to signal,
* update, and query methods. No additional calls to workflow methods are allowed. The workflow
* object is stateful, so query, signal, and update methods can communicate with the other parts of
* the workflow through workflow object fields.
*
* <h3>Calling Activities</h3>
*
Expand Down

0 comments on commit 96045ef

Please sign in to comment.