mirror of https://github.com/dapr/java-sdk.git
Compare commits
27 Commits
v1.16.0-rc
...
master
| Author | SHA1 | Date |
|---|---|---|
|
|
f0e7974512 | |
|
|
ac073e209d | |
|
|
dffa92a15a | |
|
|
12a1185958 | |
|
|
e05a744b17 | |
|
|
9fc16c262a | |
|
|
a160717c91 | |
|
|
8803e0baa1 | |
|
|
8fa4e9dee6 | |
|
|
5e0098a4c5 | |
|
|
bdb754b820 | |
|
|
d3a33595b3 | |
|
|
e25f52a13a | |
|
|
6b0b79d04c | |
|
|
0edc30a096 | |
|
|
1358cd809f | |
|
|
d8ae74ffc7 | |
|
|
cdffdb2af3 | |
|
|
6ee1f59d61 | |
|
|
a782438c36 | |
|
|
62b01c6023 | |
|
|
3bb91e505e | |
|
|
2b2a6c891b | |
|
|
afa2feeace | |
|
|
91466d346a | |
|
|
04b19e1cf7 | |
|
|
b74bc29bd7 |
|
|
@ -19,15 +19,16 @@ mvn versions:set-property -Dproperty=dapr.sdk.alpha.version -DnewVersion=$DAPR_J
|
||||||
###################
|
###################
|
||||||
|
|
||||||
# sdk-workflows
|
# sdk-workflows
|
||||||
mvn versions:set -DnewVersion=$DAPR_JAVA_SDK_ALPHA_VERSION -f sdk-workflows/pom.xml
|
mvn versions:set -DnewVersion=$DAPR_JAVA_SDK_VERSION -f sdk-workflows/pom.xml
|
||||||
|
|
||||||
# testcontainers-dapr
|
# testcontainers-dapr
|
||||||
mvn versions:set -DnewVersion=$DAPR_JAVA_SDK_ALPHA_VERSION -f testcontainers-dapr/pom.xml
|
mvn versions:set -DnewVersion=$DAPR_JAVA_SDK_VERSION -f testcontainers-dapr/pom.xml
|
||||||
|
|
||||||
# dapr-spring
|
# dapr-spring
|
||||||
mvn versions:set -DnewVersion=$DAPR_JAVA_SDK_ALPHA_VERSION -DprocessDependencies=true -f dapr-spring/pom.xml
|
mvn versions:set -DnewVersion=$DAPR_JAVA_SDK_VERSION -DprocessDependencies=true -f dapr-spring/pom.xml
|
||||||
|
mvn versions:set-property -Dproperty=dapr.spring.version -DnewVersion=$DAPR_JAVA_SDK_VERSION -f dapr-spring/pom.xml
|
||||||
|
|
||||||
# spring-boot-examples
|
# spring-boot-examples
|
||||||
mvn versions:set -DnewVersion=$DAPR_JAVA_SDK_ALPHA_VERSION -f spring-boot-examples/pom.xml
|
mvn versions:set -DnewVersion=$DAPR_JAVA_SDK_VERSION -f spring-boot-examples/pom.xml
|
||||||
|
|
||||||
git clean -f
|
git clean -f
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repo
|
- name: Checkout repo
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v5
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: pip install PyGithub
|
run: pip install PyGithub
|
||||||
- name: Automerge and update
|
- name: Automerge and update
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,35 @@ on:
|
||||||
- release-*
|
- release-*
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
test:
|
||||||
|
name: "Unit tests"
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
timeout-minutes: 30
|
||||||
|
continue-on-error: false
|
||||||
|
env:
|
||||||
|
JDK_VER: 17
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v5
|
||||||
|
- name: Set up OpenJDK ${{ env.JDK_VER }}
|
||||||
|
uses: actions/setup-java@v4
|
||||||
|
with:
|
||||||
|
distribution: 'temurin'
|
||||||
|
java-version: ${{ env.JDK_VER }}
|
||||||
|
- name: Run tests
|
||||||
|
run: ./mvnw clean install -B -q
|
||||||
|
- name: Codecov
|
||||||
|
uses: codecov/codecov-action@v5.5.1
|
||||||
|
- name: Upload test report for sdk
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: test-dapr-java-sdk-jdk${{ env.JDK_VER }}
|
||||||
|
path: sdk/target/jacoco-report/
|
||||||
|
- name: Upload test report for sdk-actors
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: report-dapr-java-sdk-actors-jdk${{ env.JDK_VER }}
|
||||||
|
path: sdk-actors/target/jacoco-report/
|
||||||
|
|
||||||
build:
|
build:
|
||||||
name: "Build jdk:${{ matrix.java }} sb:${{ matrix.spring-boot-display-version }} exp:${{ matrix.experimental }}"
|
name: "Build jdk:${{ matrix.java }} sb:${{ matrix.spring-boot-display-version }} exp:${{ matrix.experimental }}"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
@ -39,7 +68,7 @@ jobs:
|
||||||
GOPROXY: https://proxy.golang.org
|
GOPROXY: https://proxy.golang.org
|
||||||
JDK_VER: ${{ matrix.java }}
|
JDK_VER: ${{ matrix.java }}
|
||||||
DAPR_CLI_VER: 1.15.0
|
DAPR_CLI_VER: 1.15.0
|
||||||
DAPR_RUNTIME_VER: 1.16.0-rc.3
|
DAPR_RUNTIME_VER: 1.16.0-rc.5
|
||||||
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/v1.15.0/install/install.sh
|
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/v1.15.0/install/install.sh
|
||||||
DAPR_CLI_REF:
|
DAPR_CLI_REF:
|
||||||
DAPR_REF:
|
DAPR_REF:
|
||||||
|
|
@ -50,9 +79,9 @@ jobs:
|
||||||
uses: docker/setup-docker-action@v4
|
uses: docker/setup-docker-action@v4
|
||||||
- name: Check Docker version
|
- name: Check Docker version
|
||||||
run: docker version
|
run: docker version
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v5
|
||||||
- name: Set up OpenJDK ${{ env.JDK_VER }}
|
- name: Set up OpenJDK ${{ env.JDK_VER }}
|
||||||
uses: actions/setup-java@v4
|
uses: actions/setup-java@v5
|
||||||
with:
|
with:
|
||||||
distribution: 'temurin'
|
distribution: 'temurin'
|
||||||
java-version: ${{ env.JDK_VER }}
|
java-version: ${{ env.JDK_VER }}
|
||||||
|
|
@ -64,14 +93,14 @@ jobs:
|
||||||
with:
|
with:
|
||||||
go-version: ${{ env.GOVER }}
|
go-version: ${{ env.GOVER }}
|
||||||
- name: Checkout Dapr CLI repo to override dapr command.
|
- name: Checkout Dapr CLI repo to override dapr command.
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v5
|
||||||
if: env.DAPR_CLI_REF != ''
|
if: env.DAPR_CLI_REF != ''
|
||||||
with:
|
with:
|
||||||
repository: dapr/cli
|
repository: dapr/cli
|
||||||
ref: ${{ env.DAPR_CLI_REF }}
|
ref: ${{ env.DAPR_CLI_REF }}
|
||||||
path: cli
|
path: cli
|
||||||
- name: Checkout Dapr repo to override daprd.
|
- name: Checkout Dapr repo to override daprd.
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v5
|
||||||
if: env.DAPR_REF != ''
|
if: env.DAPR_REF != ''
|
||||||
with:
|
with:
|
||||||
repository: dapr/dapr
|
repository: dapr/dapr
|
||||||
|
|
@ -112,33 +141,13 @@ jobs:
|
||||||
wget -q ${{ env.TOXIPROXY_URL }} -O /home/runner/.local/bin/toxiproxy-server
|
wget -q ${{ env.TOXIPROXY_URL }} -O /home/runner/.local/bin/toxiproxy-server
|
||||||
chmod +x /home/runner/.local/bin/toxiproxy-server
|
chmod +x /home/runner/.local/bin/toxiproxy-server
|
||||||
/home/runner/.local/bin/toxiproxy-server --version
|
/home/runner/.local/bin/toxiproxy-server --version
|
||||||
- name: Clean up files
|
- name: Clean up and install sdk
|
||||||
run: ./mvnw clean -B
|
run: ./mvnw clean install -B -q -DskipTests
|
||||||
- name: Build sdk
|
|
||||||
run: ./mvnw compile -B -q
|
|
||||||
- name: Unit tests
|
|
||||||
run: ./mvnw test # making it temporarily verbose.
|
|
||||||
env:
|
|
||||||
DOCKER_HOST: ${{steps.setup_docker.outputs.sock}}
|
|
||||||
- name: Codecov
|
|
||||||
uses: codecov/codecov-action@v5.4.3
|
|
||||||
- name: Install jars
|
|
||||||
run: ./mvnw install -q -B -DskipTests
|
|
||||||
- name: Integration tests using spring boot version ${{ matrix.spring-boot-version }}
|
- name: Integration tests using spring boot version ${{ matrix.spring-boot-version }}
|
||||||
id: integration_tests
|
id: integration_tests
|
||||||
run: PRODUCT_SPRING_BOOT_VERSION=${{ matrix.spring-boot-version }} ./mvnw -B -Pintegration-tests verify
|
run: PRODUCT_SPRING_BOOT_VERSION=${{ matrix.spring-boot-version }} ./mvnw -B -Pintegration-tests dependency:copy-dependencies verify
|
||||||
env:
|
env:
|
||||||
DOCKER_HOST: ${{steps.setup_docker.outputs.sock}}
|
DOCKER_HOST: ${{steps.setup_docker.outputs.sock}}
|
||||||
- name: Upload test report for sdk
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: report-dapr-java-sdk-jdk${{ matrix.java }}-sb${{ matrix.spring-boot-version }}
|
|
||||||
path: sdk/target/jacoco-report/
|
|
||||||
- name: Upload test report for sdk-actors
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: report-dapr-java-sdk-actors-jdk${{ matrix.java }}-sb${{ matrix.spring-boot-version }}
|
|
||||||
path: sdk-actors/target/jacoco-report/
|
|
||||||
- name: Upload failsafe test report for sdk-tests on failure
|
- name: Upload failsafe test report for sdk-tests on failure
|
||||||
if: ${{ failure() && steps.integration_tests.conclusion == 'failure' }}
|
if: ${{ failure() && steps.integration_tests.conclusion == 'failure' }}
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
|
@ -154,7 +163,7 @@ jobs:
|
||||||
|
|
||||||
publish:
|
publish:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: build
|
needs: [ build, test ]
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
env:
|
env:
|
||||||
JDK_VER: 17
|
JDK_VER: 17
|
||||||
|
|
@ -163,9 +172,9 @@ jobs:
|
||||||
GPG_KEY: ${{ secrets.GPG_KEY }}
|
GPG_KEY: ${{ secrets.GPG_KEY }}
|
||||||
GPG_PWD: ${{ secrets.GPG_PWD }}
|
GPG_PWD: ${{ secrets.GPG_PWD }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v5
|
||||||
- name: Set up OpenJDK ${{ env.JDK_VER }}
|
- name: Set up OpenJDK ${{ env.JDK_VER }}
|
||||||
uses: actions/setup-java@v4
|
uses: actions/setup-java@v5
|
||||||
with:
|
with:
|
||||||
distribution: 'temurin'
|
distribution: 'temurin'
|
||||||
java-version: ${{ env.JDK_VER }}
|
java-version: ${{ env.JDK_VER }}
|
||||||
|
|
@ -181,14 +190,11 @@ jobs:
|
||||||
if: startswith(github.ref, 'refs/tags/v') && !contains(env.PARENT_VERSION, '-SNAPSHOT')
|
if: startswith(github.ref, 'refs/tags/v') && !contains(env.PARENT_VERSION, '-SNAPSHOT')
|
||||||
run: |
|
run: |
|
||||||
echo "DEPLOY_OSSRH=true" >> $GITHUB_ENV
|
echo "DEPLOY_OSSRH=true" >> $GITHUB_ENV
|
||||||
- name: Install jars
|
|
||||||
if: env.DEPLOY_OSSRH == 'true'
|
|
||||||
run: ./mvnw install -DskipTests -B -q
|
|
||||||
- name: Publish to ossrh
|
- name: Publish to ossrh
|
||||||
if: env.DEPLOY_OSSRH == 'true'
|
if: env.DEPLOY_OSSRH == 'true'
|
||||||
run: |
|
run: |
|
||||||
echo ${{ secrets.GPG_PRIVATE_KEY }} | base64 -d > private-key.gpg
|
echo ${{ secrets.GPG_PRIVATE_KEY }} | base64 -d > private-key.gpg
|
||||||
export GPG_TTY=$(tty)
|
export GPG_TTY=$(tty)
|
||||||
gpg --batch --import private-key.gpg
|
gpg --batch --import private-key.gpg
|
||||||
./mvnw -V -B -Dgpg.skip=false -s settings.xml deploy
|
./mvnw -V -B -Dgpg.skip=false -DskipTests -s settings.xml deploy
|
||||||
curl -X POST https://ossrh-staging-api.central.sonatype.com/manual/upload/defaultRepository/io.dapr
|
curl -X POST https://ossrh-staging-api.central.sonatype.com/manual/upload/defaultRepository/io.dapr
|
||||||
|
|
|
||||||
|
|
@ -29,13 +29,13 @@ jobs:
|
||||||
JDK_VER: '17'
|
JDK_VER: '17'
|
||||||
steps:
|
steps:
|
||||||
- name: Check out code
|
- name: Check out code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v5
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
token: ${{ secrets.DAPR_BOT_TOKEN }}
|
token: ${{ secrets.DAPR_BOT_TOKEN }}
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- name: Set up OpenJDK ${{ env.JDK_VER }}
|
- name: Set up OpenJDK ${{ env.JDK_VER }}
|
||||||
uses: actions/setup-java@v4
|
uses: actions/setup-java@v5
|
||||||
with:
|
with:
|
||||||
distribution: 'temurin'
|
distribution: 'temurin'
|
||||||
java-version: ${{ env.JDK_VER }}
|
java-version: ${{ env.JDK_VER }}
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,7 @@ jobs:
|
||||||
FOSSA_API_KEY: b88e1f4287c3108c8751bf106fb46db6 # This is a push-only token that is safe to be exposed.
|
FOSSA_API_KEY: b88e1f4287c3108c8751bf106fb46db6 # This is a push-only token that is safe to be exposed.
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout code"
|
- name: "Checkout code"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v5
|
||||||
|
|
||||||
- name: "Run FOSSA Scan"
|
- name: "Run FOSSA Scan"
|
||||||
uses: fossas/fossa-action@v1.7.0 # Use a specific version if locking is preferred
|
uses: fossas/fossa-action@v1.7.0 # Use a specific version if locking is preferred
|
||||||
|
|
|
||||||
|
|
@ -22,9 +22,9 @@ jobs:
|
||||||
env:
|
env:
|
||||||
JDK_VER: 17
|
JDK_VER: 17
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v5
|
||||||
- name: Set up OpenJDK ${{ env.JDK_VER }}
|
- name: Set up OpenJDK ${{ env.JDK_VER }}
|
||||||
uses: actions/setup-java@v4
|
uses: actions/setup-java@v5
|
||||||
with:
|
with:
|
||||||
distribution: 'temurin'
|
distribution: 'temurin'
|
||||||
java-version: ${{ env.JDK_VER }}
|
java-version: ${{ env.JDK_VER }}
|
||||||
|
|
|
||||||
|
|
@ -38,14 +38,14 @@ jobs:
|
||||||
GOPROXY: https://proxy.golang.org
|
GOPROXY: https://proxy.golang.org
|
||||||
JDK_VER: ${{ matrix.java }}
|
JDK_VER: ${{ matrix.java }}
|
||||||
DAPR_CLI_VER: 1.15.0
|
DAPR_CLI_VER: 1.15.0
|
||||||
DAPR_RUNTIME_VER: 1.16.0-rc.3
|
DAPR_RUNTIME_VER: 1.16.0-rc.5
|
||||||
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/v1.15.0/install/install.sh
|
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/v1.15.0/install/install.sh
|
||||||
DAPR_CLI_REF:
|
DAPR_CLI_REF:
|
||||||
DAPR_REF:
|
DAPR_REF:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v5
|
||||||
- name: Set up OpenJDK ${{ env.JDK_VER }}
|
- name: Set up OpenJDK ${{ env.JDK_VER }}
|
||||||
uses: actions/setup-java@v4
|
uses: actions/setup-java@v5
|
||||||
with:
|
with:
|
||||||
distribution: 'temurin'
|
distribution: 'temurin'
|
||||||
java-version: ${{ env.JDK_VER }}
|
java-version: ${{ env.JDK_VER }}
|
||||||
|
|
@ -62,14 +62,14 @@ jobs:
|
||||||
with:
|
with:
|
||||||
go-version: ${{ env.GOVER }}
|
go-version: ${{ env.GOVER }}
|
||||||
- name: Checkout Dapr CLI repo to override dapr command.
|
- name: Checkout Dapr CLI repo to override dapr command.
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v5
|
||||||
if: env.DAPR_CLI_REF != ''
|
if: env.DAPR_CLI_REF != ''
|
||||||
with:
|
with:
|
||||||
repository: dapr/cli
|
repository: dapr/cli
|
||||||
ref: ${{ env.DAPR_CLI_REF }}
|
ref: ${{ env.DAPR_CLI_REF }}
|
||||||
path: cli
|
path: cli
|
||||||
- name: Checkout Dapr repo to override daprd.
|
- name: Checkout Dapr repo to override daprd.
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v5
|
||||||
if: env.DAPR_REF != ''
|
if: env.DAPR_REF != ''
|
||||||
with:
|
with:
|
||||||
repository: dapr/dapr
|
repository: dapr/dapr
|
||||||
|
|
|
||||||
12
README.md
12
README.md
|
|
@ -50,19 +50,19 @@ For a Maven project, add the following to your `pom.xml` file:
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.dapr</groupId>
|
<groupId>io.dapr</groupId>
|
||||||
<artifactId>dapr-sdk</artifactId>
|
<artifactId>dapr-sdk</artifactId>
|
||||||
<version>1.15.0</version>
|
<version>1.15.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- Dapr's SDK for Actors (optional). -->
|
<!-- Dapr's SDK for Actors (optional). -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.dapr</groupId>
|
<groupId>io.dapr</groupId>
|
||||||
<artifactId>dapr-sdk-actors</artifactId>
|
<artifactId>dapr-sdk-actors</artifactId>
|
||||||
<version>1.15.0</version>
|
<version>1.15.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- Dapr's SDK integration with SpringBoot (optional). -->
|
<!-- Dapr's SDK integration with SpringBoot (optional). -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.dapr</groupId>
|
<groupId>io.dapr</groupId>
|
||||||
<artifactId>dapr-sdk-springboot</artifactId>
|
<artifactId>dapr-sdk-springboot</artifactId>
|
||||||
<version>1.15.0</version>
|
<version>1.15.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
...
|
...
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
@ -76,11 +76,11 @@ For a Gradle project, add the following to your `build.gradle` file:
|
||||||
dependencies {
|
dependencies {
|
||||||
...
|
...
|
||||||
// Dapr's core SDK with all features, except Actors.
|
// Dapr's core SDK with all features, except Actors.
|
||||||
compile('io.dapr:dapr-sdk:1.15.0')
|
compile('io.dapr:dapr-sdk:1.15.1')
|
||||||
// Dapr's SDK for Actors (optional).
|
// Dapr's SDK for Actors (optional).
|
||||||
compile('io.dapr:dapr-sdk-actors:1.15.0')
|
compile('io.dapr:dapr-sdk-actors:1.15.1')
|
||||||
// Dapr's SDK integration with SpringBoot (optional).
|
// Dapr's SDK integration with SpringBoot (optional).
|
||||||
compile('io.dapr:dapr-sdk-springboot:1.15.0')
|
compile('io.dapr:dapr-sdk-springboot:1.15.1')
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>io.dapr.spring</groupId>
|
<groupId>io.dapr.spring</groupId>
|
||||||
<artifactId>dapr-spring-parent</artifactId>
|
<artifactId>dapr-spring-parent</artifactId>
|
||||||
<version>0.16.0-rc-1</version>
|
<version>1.17.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>dapr-spring-boot-autoconfigure</artifactId>
|
<artifactId>dapr-spring-boot-autoconfigure</artifactId>
|
||||||
|
|
|
||||||
|
|
@ -25,8 +25,6 @@ import org.mockito.junit.jupiter.MockitoExtension;
|
||||||
import org.springframework.boot.autoconfigure.AutoConfigurations;
|
import org.springframework.boot.autoconfigure.AutoConfigurations;
|
||||||
import org.springframework.boot.test.context.runner.ApplicationContextRunner;
|
import org.springframework.boot.test.context.runner.ApplicationContextRunner;
|
||||||
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
import static org.assertj.core.api.Assertions.assertThat;
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
import static org.mockito.Mockito.verify;
|
import static org.mockito.Mockito.verify;
|
||||||
import static org.mockito.Mockito.when;
|
import static org.mockito.Mockito.when;
|
||||||
|
|
@ -111,6 +109,18 @@ class DaprClientAutoConfigurationTest {
|
||||||
verify(builder).withPropertyOverride(Properties.GRPC_PORT, String.valueOf(grpcPort));
|
verify(builder).withPropertyOverride(Properties.GRPC_PORT, String.valueOf(grpcPort));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@DisplayName("Should override API token if it exists")
|
||||||
|
void shouldOverrideApiTokenIfExists() {
|
||||||
|
String apiToken = "token";
|
||||||
|
|
||||||
|
when(connectionDetails.getApiToken()).thenReturn(apiToken);
|
||||||
|
|
||||||
|
configuration.daprClientBuilder(connectionDetails);
|
||||||
|
|
||||||
|
verify(builder).withPropertyOverride(Properties.API_TOKEN, apiToken);
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@DisplayName("Should override HTTP endpoint in properties if it exists")
|
@DisplayName("Should override HTTP endpoint in properties if it exists")
|
||||||
void shouldOverrideHttpEndpointInPropertiesIfExists() {
|
void shouldOverrideHttpEndpointInPropertiesIfExists() {
|
||||||
|
|
@ -159,6 +169,18 @@ class DaprClientAutoConfigurationTest {
|
||||||
assertThat(result.getValue(Properties.GRPC_PORT)).isEqualTo(grpcPort);
|
assertThat(result.getValue(Properties.GRPC_PORT)).isEqualTo(grpcPort);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@DisplayName("Should override API token in properties if it exists")
|
||||||
|
void shouldOverrideApiTokenPropertiesIfExists() {
|
||||||
|
String apiToken = "token";
|
||||||
|
|
||||||
|
when(connectionDetails.getApiToken()).thenReturn(apiToken);
|
||||||
|
|
||||||
|
Properties result = configuration.createPropertiesFromConnectionDetails(connectionDetails);
|
||||||
|
|
||||||
|
assertThat(result.getValue(Properties.API_TOKEN)).isEqualTo(apiToken);
|
||||||
|
}
|
||||||
|
|
||||||
private static class TestDaprClientAutoConfiguration extends DaprClientAutoConfiguration {
|
private static class TestDaprClientAutoConfiguration extends DaprClientAutoConfiguration {
|
||||||
|
|
||||||
private final DaprClientBuilder daprClientBuilder;
|
private final DaprClientBuilder daprClientBuilder;
|
||||||
|
|
|
||||||
|
|
@ -83,7 +83,26 @@ public class DaprClientPropertiesTest {
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@DisplayName("Should map DaprClient properties correctly (camelCase)")
|
||||||
|
public void shouldMapDaprClientPropertiesCamelCase() {
|
||||||
|
runner.withSystemProperties(
|
||||||
|
"dapr.client.httpEndpoint=http://localhost",
|
||||||
|
"dapr.client.httpPort=3500",
|
||||||
|
"dapr.client.grpcEndpoint=localhost",
|
||||||
|
"dapr.client.grpcPort=50001"
|
||||||
|
).run(context -> {
|
||||||
|
DaprClientProperties properties = context.getBean(DaprClientProperties.class);
|
||||||
|
SoftAssertions.assertSoftly(softly -> {
|
||||||
|
softly.assertThat(properties.getGrpcEndpoint()).isEqualTo("localhost");
|
||||||
|
softly.assertThat(properties.getHttpEndpoint()).isEqualTo("http://localhost");
|
||||||
|
softly.assertThat(properties.getHttpPort()).isEqualTo(3500);
|
||||||
|
softly.assertThat(properties.getGrpcPort()).isEqualTo(50001);
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@EnableConfigurationProperties(DaprClientProperties.class)
|
@EnableConfigurationProperties(DaprClientProperties.class)
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>io.dapr.spring</groupId>
|
<groupId>io.dapr.spring</groupId>
|
||||||
<artifactId>dapr-spring-parent</artifactId>
|
<artifactId>dapr-spring-parent</artifactId>
|
||||||
<version>0.16.0-rc-1</version>
|
<version>1.17.0-SNAPSHOT</version>
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>io.dapr.spring</groupId>
|
<groupId>io.dapr.spring</groupId>
|
||||||
<artifactId>dapr-spring-parent</artifactId>
|
<artifactId>dapr-spring-parent</artifactId>
|
||||||
<version>0.16.0-rc-1</version>
|
<version>1.17.0-SNAPSHOT</version>
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>io.dapr.spring</groupId>
|
<groupId>io.dapr.spring</groupId>
|
||||||
<artifactId>dapr-spring-parent</artifactId>
|
<artifactId>dapr-spring-parent</artifactId>
|
||||||
<version>0.16.0-rc-1</version>
|
<version>1.17.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>dapr-spring-boot-tests</artifactId>
|
<artifactId>dapr-spring-boot-tests</artifactId>
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>io.dapr.spring</groupId>
|
<groupId>io.dapr.spring</groupId>
|
||||||
<artifactId>dapr-spring-parent</artifactId>
|
<artifactId>dapr-spring-parent</artifactId>
|
||||||
<version>0.16.0-rc-1</version>
|
<version>1.17.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>dapr-spring-data</artifactId>
|
<artifactId>dapr-spring-data</artifactId>
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>io.dapr.spring</groupId>
|
<groupId>io.dapr.spring</groupId>
|
||||||
<artifactId>dapr-spring-parent</artifactId>
|
<artifactId>dapr-spring-parent</artifactId>
|
||||||
<version>0.16.0-rc-1</version>
|
<version>1.17.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>dapr-spring-messaging</artifactId>
|
<artifactId>dapr-spring-messaging</artifactId>
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>io.dapr.spring</groupId>
|
<groupId>io.dapr.spring</groupId>
|
||||||
<artifactId>dapr-spring-parent</artifactId>
|
<artifactId>dapr-spring-parent</artifactId>
|
||||||
<version>0.16.0-rc-1</version>
|
<version>1.17.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>dapr-spring-workflows</artifactId>
|
<artifactId>dapr-spring-workflows</artifactId>
|
||||||
|
|
|
||||||
|
|
@ -7,13 +7,13 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>io.dapr</groupId>
|
<groupId>io.dapr</groupId>
|
||||||
<artifactId>dapr-sdk-parent</artifactId>
|
<artifactId>dapr-sdk-parent</artifactId>
|
||||||
<version>1.16.0-rc-1</version>
|
<version>1.17.0-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<groupId>io.dapr.spring</groupId>
|
<groupId>io.dapr.spring</groupId>
|
||||||
<artifactId>dapr-spring-parent</artifactId>
|
<artifactId>dapr-spring-parent</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<version>0.16.0-rc-1</version>
|
<version>1.17.0-SNAPSHOT</version>
|
||||||
<name>dapr-spring-parent</name>
|
<name>dapr-spring-parent</name>
|
||||||
<description>SDK extension for Spring and Spring Boot</description>
|
<description>SDK extension for Spring and Spring Boot</description>
|
||||||
|
|
||||||
|
|
@ -33,7 +33,8 @@
|
||||||
<maven.compiler.release>11</maven.compiler.release>
|
<maven.compiler.release>11</maven.compiler.release>
|
||||||
<testcontainers.version>1.19.8</testcontainers.version>
|
<testcontainers.version>1.19.8</testcontainers.version>
|
||||||
<junit.version>5.11.2</junit.version>
|
<junit.version>5.11.2</junit.version>
|
||||||
<dapr.spring.version>0.16.0-rc-1</dapr.spring.version>
|
<!-- WARNING: don't change this property unless you also update .github/scripts/update_sdk_version.sh -->
|
||||||
|
<dapr.spring.version>1.17.0-SNAPSHOT</dapr.spring.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<dependencyManagement>
|
<dependencyManagement>
|
||||||
|
|
@ -57,7 +58,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.dapr</groupId>
|
<groupId>io.dapr</groupId>
|
||||||
<artifactId>dapr-sdk-workflows</artifactId>
|
<artifactId>dapr-sdk-workflows</artifactId>
|
||||||
<version>${dapr.sdk.alpha.version}</version>
|
<version>${dapr.sdk.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.dapr.spring</groupId>
|
<groupId>io.dapr.spring</groupId>
|
||||||
|
|
@ -186,6 +187,9 @@
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-javadoc-plugin</artifactId>
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
<version>3.2.0</version>
|
<version>3.2.0</version>
|
||||||
|
<configuration>
|
||||||
|
<notimestamp>true</notimestamp>
|
||||||
|
</configuration>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>attach-javadocs</id>
|
<id>attach-javadocs</id>
|
||||||
|
|
|
||||||
|
|
@ -46,19 +46,19 @@ For a Maven project, add the following to your `pom.xml` file:
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.dapr</groupId>
|
<groupId>io.dapr</groupId>
|
||||||
<artifactId>dapr-sdk</artifactId>
|
<artifactId>dapr-sdk</artifactId>
|
||||||
<version>1.15.0</version>
|
<version>1.15.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- Dapr's SDK for Actors (optional). -->
|
<!-- Dapr's SDK for Actors (optional). -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.dapr</groupId>
|
<groupId>io.dapr</groupId>
|
||||||
<artifactId>dapr-sdk-actors</artifactId>
|
<artifactId>dapr-sdk-actors</artifactId>
|
||||||
<version>1.15.0</version>
|
<version>1.15.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- Dapr's SDK integration with SpringBoot (optional). -->
|
<!-- Dapr's SDK integration with SpringBoot (optional). -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.dapr</groupId>
|
<groupId>io.dapr</groupId>
|
||||||
<artifactId>dapr-sdk-springboot</artifactId>
|
<artifactId>dapr-sdk-springboot</artifactId>
|
||||||
<version>1.15.0</version>
|
<version>1.15.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
...
|
...
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
@ -76,11 +76,11 @@ For a Gradle project, add the following to your `build.gradle` file:
|
||||||
dependencies {
|
dependencies {
|
||||||
...
|
...
|
||||||
// Dapr's core SDK with all features, except Actors.
|
// Dapr's core SDK with all features, except Actors.
|
||||||
compile('io.dapr:dapr-sdk:1.15.0')
|
compile('io.dapr:dapr-sdk:1.15.1')
|
||||||
// Dapr's SDK for Actors (optional).
|
// Dapr's SDK for Actors (optional).
|
||||||
compile('io.dapr:dapr-sdk-actors:1.15.0')
|
compile('io.dapr:dapr-sdk-actors:1.15.1')
|
||||||
// Dapr's SDK integration with SpringBoot (optional).
|
// Dapr's SDK integration with SpringBoot (optional).
|
||||||
compile('io.dapr:dapr-sdk-springboot:1.15.0')
|
compile('io.dapr:dapr-sdk-springboot:1.15.1')
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
@ -96,7 +96,7 @@ You can fix this by specifying a compatible `OkHttp` version in your project to
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.squareup.okhttp3</groupId>
|
<groupId>com.squareup.okhttp3</groupId>
|
||||||
<artifactId>okhttp</artifactId>
|
<artifactId>okhttp</artifactId>
|
||||||
<version>1.15.0</version>
|
<version>1.15.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ weight: 20000
|
||||||
description: How to get up and running with workflows using the Dapr Java SDK
|
description: How to get up and running with workflows using the Dapr Java SDK
|
||||||
---
|
---
|
||||||
|
|
||||||
Let’s create a Dapr workflow and invoke it using the console. With the [provided workflow example](https://github.com/dapr/java-sdk/tree/master/examples/src/main/java/io/dapr/examples/workflows), you will:
|
Let's create a Dapr workflow and invoke it using the console. With the [provided workflow example](https://github.com/dapr/java-sdk/tree/master/examples/src/main/java/io/dapr/examples/workflows), you will:
|
||||||
|
|
||||||
- Execute the workflow instance using the [Java workflow worker](https://github.com/dapr/java-sdk/blob/master/examples/src/main/java/io/dapr/examples/workflows/DemoWorkflowWorker.java)
|
- Execute the workflow instance using the [Java workflow worker](https://github.com/dapr/java-sdk/blob/master/examples/src/main/java/io/dapr/examples/workflows/DemoWorkflowWorker.java)
|
||||||
- Utilize the Java workflow client and API calls to [start and terminate workflow instances](https://github.com/dapr/java-sdk/blob/master/examples/src/main/java/io/dapr/examples/workflows/DemoWorkflowClient.java)
|
- Utilize the Java workflow client and API calls to [start and terminate workflow instances](https://github.com/dapr/java-sdk/blob/master/examples/src/main/java/io/dapr/examples/workflows/DemoWorkflowClient.java)
|
||||||
|
|
@ -85,11 +85,10 @@ You're up and running! Both Dapr and your app logs will appear here.
|
||||||
== APP == INFO: Durable Task worker is connecting to sidecar at 127.0.0.1:50001.
|
== APP == INFO: Durable Task worker is connecting to sidecar at 127.0.0.1:50001.
|
||||||
```
|
```
|
||||||
|
|
||||||
## Run the `DemoWorkflowClient
|
## Run the `DemoWorkflowClient`
|
||||||
|
|
||||||
The `DemoWorkflowClient` starts instances of workflows that have been registered with Dapr.
|
The `DemoWorkflowClient` starts instances of workflows that have been registered with Dapr.
|
||||||
|
|
||||||
|
|
||||||
```java
|
```java
|
||||||
public class DemoWorkflowClient {
|
public class DemoWorkflowClient {
|
||||||
|
|
||||||
|
|
@ -246,4 +245,40 @@ Exiting DemoWorkflowClient.
|
||||||
|
|
||||||
## Next steps
|
## Next steps
|
||||||
- [Learn more about Dapr workflow]({{% ref workflow-overview.md %}})
|
- [Learn more about Dapr workflow]({{% ref workflow-overview.md %}})
|
||||||
- [Workflow API reference]({{% ref workflow_api.md %}})
|
- [Workflow API reference]({{% ref workflow_api.md %}})
|
||||||
|
|
||||||
|
## Advanced features
|
||||||
|
|
||||||
|
### Task Execution Keys
|
||||||
|
|
||||||
|
Task execution keys are unique identifiers generated by the durabletask-java library. They are stored in the `WorkflowActivityContext` and can be used to track and manage the execution of workflow activities. They are particularly useful for:
|
||||||
|
|
||||||
|
1. **Idempotency**: Ensuring activities are not executed multiple times for the same task
|
||||||
|
2. **State Management**: Tracking the state of activity execution
|
||||||
|
3. **Error Handling**: Managing retries and failures in a controlled manner
|
||||||
|
|
||||||
|
Here's an example of how to use task execution keys in your workflow activities:
|
||||||
|
|
||||||
|
```java
|
||||||
|
public class TaskExecutionKeyActivity implements WorkflowActivity {
|
||||||
|
@Override
|
||||||
|
public Object run(WorkflowActivityContext ctx) {
|
||||||
|
// Get the task execution key for this activity
|
||||||
|
String taskExecutionKey = ctx.getTaskExecutionKey();
|
||||||
|
|
||||||
|
// Use the key to implement idempotency or state management
|
||||||
|
// For example, check if this task has already been executed
|
||||||
|
if (isTaskAlreadyExecuted(taskExecutionKey)) {
|
||||||
|
return getPreviousResult(taskExecutionKey);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Execute the activity logic
|
||||||
|
Object result = executeActivityLogic();
|
||||||
|
|
||||||
|
// Store the result with the task execution key
|
||||||
|
storeResult(taskExecutionKey, result);
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
|
||||||
|
|
@ -26,12 +26,12 @@ If you already have a Spring Boot application, you can directly add the followin
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.dapr.spring</groupId>
|
<groupId>io.dapr.spring</groupId>
|
||||||
<artifactId>dapr-spring-boot-starter</artifactId>
|
<artifactId>dapr-spring-boot-starter</artifactId>
|
||||||
<version>0.15.0</version>
|
<version>0.15.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.dapr.spring</groupId>
|
<groupId>io.dapr.spring</groupId>
|
||||||
<artifactId>dapr-spring-boot-starter-test</artifactId>
|
<artifactId>dapr-spring-boot-starter-test</artifactId>
|
||||||
<version>0.15.0</version>
|
<version>0.15.1</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
```
|
```
|
||||||
|
|
@ -56,13 +56,13 @@ This will connect to the default Dapr gRPC endpoint `localhost:50001`, requiring
|
||||||
{{% alert title="Note" color="primary" %}}
|
{{% alert title="Note" color="primary" %}}
|
||||||
By default, the following properties are preconfigured for `DaprClient` and `DaprWorkflowClient`:
|
By default, the following properties are preconfigured for `DaprClient` and `DaprWorkflowClient`:
|
||||||
```properties
|
```properties
|
||||||
dapr.client.http-endpoint=http://localhost
|
dapr.client.httpEndpoint=http://localhost
|
||||||
dapr.client.http-port=3500
|
dapr.client.httpPort=3500
|
||||||
dapr.client.grpc-endpoint=localhost
|
dapr.client.grpcEndpoint=localhost
|
||||||
dapr.client.grpc-port=50001
|
dapr.client.grpcPort=50001
|
||||||
dapr.client.api-token=<Your Remote App API Token>
|
dapr.client.apiToken=<your remote api token>
|
||||||
```
|
```
|
||||||
These values are used by default, but you can override them in your `application.properties` file to suit your environment.
|
These values are used by default, but you can override them in your `application.properties` file to suit your environment. Please note that both kebab case and camel case are supported.
|
||||||
{{% /alert %}}
|
{{% /alert %}}
|
||||||
|
|
||||||
You can use the `DaprClient` to interact with the Dapr APIs anywhere in your application, for example from inside a REST endpoint:
|
You can use the `DaprClient` to interact with the Dapr APIs anywhere in your application, for example from inside a REST endpoint:
|
||||||
|
|
@ -95,7 +95,7 @@ public class DaprTestContainersConfig {
|
||||||
@ServiceConnection
|
@ServiceConnection
|
||||||
public DaprContainer daprContainer(Network daprNetwork, PostgreSQLContainer<?> postgreSQLContainer){
|
public DaprContainer daprContainer(Network daprNetwork, PostgreSQLContainer<?> postgreSQLContainer){
|
||||||
|
|
||||||
return new DaprContainer("daprio/daprd:1.16.0-rc.3")
|
return new DaprContainer("daprio/daprd:1.16.0-rc.5")
|
||||||
.withAppName("producer-app")
|
.withAppName("producer-app")
|
||||||
.withNetwork(daprNetwork)
|
.withNetwork(daprNetwork)
|
||||||
.withComponent(new Component("kvstore", "state.postgresql", "v1", STATE_STORE_PROPERTIES))
|
.withComponent(new Component("kvstore", "state.postgresql", "v1", STATE_STORE_PROPERTIES))
|
||||||
|
|
@ -250,7 +250,7 @@ Finally, because Dapr PubSub requires a bidirectional connection between your ap
|
||||||
@ServiceConnection
|
@ServiceConnection
|
||||||
public DaprContainer daprContainer(Network daprNetwork, PostgreSQLContainer<?> postgreSQLContainer, RabbitMQContainer rabbitMQContainer){
|
public DaprContainer daprContainer(Network daprNetwork, PostgreSQLContainer<?> postgreSQLContainer, RabbitMQContainer rabbitMQContainer){
|
||||||
|
|
||||||
return new DaprContainer("daprio/daprd:1.16.0-rc.3")
|
return new DaprContainer("daprio/daprd:1.16.0-rc.5")
|
||||||
.withAppName("producer-app")
|
.withAppName("producer-app")
|
||||||
.withNetwork(daprNetwork)
|
.withNetwork(daprNetwork)
|
||||||
.withComponent(new Component("kvstore", "state.postgresql", "v1", STATE_STORE_PROPERTIES))
|
.withComponent(new Component("kvstore", "state.postgresql", "v1", STATE_STORE_PROPERTIES))
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>All Classes and Interfaces (dapr-sdk-parent 1.15.0 API)</title>
|
<title>All Classes and Interfaces (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="class index">
|
<meta name="description" content="class index">
|
||||||
<meta name="generator" content="javadoc/AllClassesIndexWriter">
|
<meta name="generator" content="javadoc/AllClassesIndexWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>All Packages (dapr-sdk-parent 1.15.0 API)</title>
|
<title>All Packages (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="package index">
|
<meta name="description" content="package index">
|
||||||
<meta name="generator" content="javadoc/AllPackagesIndexWriter">
|
<meta name="generator" content="javadoc/AllPackagesIndexWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>Constant Field Values (dapr-sdk-parent 1.15.0 API)</title>
|
<title>Constant Field Values (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="summary of constants">
|
<meta name="description" content="summary of constants">
|
||||||
<meta name="generator" content="javadoc/ConstantsSummaryWriterImpl">
|
<meta name="generator" content="javadoc/ConstantsSummaryWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>All Classes and Interfaces (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>All Classes and Interfaces (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="class index">
|
<meta name="description" content="class index">
|
||||||
<meta name="generator" content="javadoc/AllClassesIndexWriter">
|
<meta name="generator" content="javadoc/AllClassesIndexWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>All Packages (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>All Packages (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="package index">
|
<meta name="description" content="package index">
|
||||||
<meta name="generator" content="javadoc/AllPackagesIndexWriter">
|
<meta name="generator" content="javadoc/AllPackagesIndexWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>API Help (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>API Help (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="help">
|
<meta name="description" content="help">
|
||||||
<meta name="generator" content="javadoc/HelpWriter">
|
<meta name="generator" content="javadoc/HelpWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>Index (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>Index (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="index">
|
<meta name="description" content="index">
|
||||||
<meta name="generator" content="javadoc/IndexWriter">
|
<meta name="generator" content="javadoc/IndexWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||||
|
|
@ -282,6 +282,8 @@ loadScripts(document, 'script');</script>
|
||||||
</dl>
|
</dl>
|
||||||
<h2 class="title" id="I:G">G</h2>
|
<h2 class="title" id="I:G">G</h2>
|
||||||
<dl class="index">
|
<dl class="index">
|
||||||
|
<dt><a href="io/dapr/workflows/WorkflowTaskOptions.html#getAppId()" class="member-name-link">getAppId()</a> - Method in class io.dapr.workflows.<a href="io/dapr/workflows/WorkflowTaskOptions.html" title="class in io.dapr.workflows">WorkflowTaskOptions</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
<dt><a href="io/dapr/workflows/WorkflowTaskRetryPolicy.html#getBackoffCoefficient()" class="member-name-link">getBackoffCoefficient()</a> - Method in class io.dapr.workflows.<a href="io/dapr/workflows/WorkflowTaskRetryPolicy.html" title="class in io.dapr.workflows">WorkflowTaskRetryPolicy</a></dt>
|
<dt><a href="io/dapr/workflows/WorkflowTaskRetryPolicy.html#getBackoffCoefficient()" class="member-name-link">getBackoffCoefficient()</a> - Method in class io.dapr.workflows.<a href="io/dapr/workflows/WorkflowTaskRetryPolicy.html" title="class in io.dapr.workflows">WorkflowTaskRetryPolicy</a></dt>
|
||||||
<dd> </dd>
|
<dd> </dd>
|
||||||
<dt><a href="io/dapr/workflows/client/WorkflowInstanceStatus.html#getCreatedAt()" class="member-name-link">getCreatedAt()</a> - Method in interface io.dapr.workflows.client.<a href="io/dapr/workflows/client/WorkflowInstanceStatus.html" title="interface in io.dapr.workflows.client">WorkflowInstanceStatus</a></dt>
|
<dt><a href="io/dapr/workflows/client/WorkflowInstanceStatus.html#getCreatedAt()" class="member-name-link">getCreatedAt()</a> - Method in interface io.dapr.workflows.client.<a href="io/dapr/workflows/client/WorkflowInstanceStatus.html" title="interface in io.dapr.workflows.client">WorkflowInstanceStatus</a></dt>
|
||||||
|
|
@ -841,10 +843,26 @@ the order they are declared.</div>
|
||||||
<dd> </dd>
|
<dd> </dd>
|
||||||
<dt><a href="io/dapr/workflows/WorkflowTaskOptions.html#%3Cinit%3E(io.dapr.workflows.WorkflowTaskRetryHandler)" class="member-name-link">WorkflowTaskOptions(WorkflowTaskRetryHandler)</a> - Constructor for class io.dapr.workflows.<a href="io/dapr/workflows/WorkflowTaskOptions.html" title="class in io.dapr.workflows">WorkflowTaskOptions</a></dt>
|
<dt><a href="io/dapr/workflows/WorkflowTaskOptions.html#%3Cinit%3E(io.dapr.workflows.WorkflowTaskRetryHandler)" class="member-name-link">WorkflowTaskOptions(WorkflowTaskRetryHandler)</a> - Constructor for class io.dapr.workflows.<a href="io/dapr/workflows/WorkflowTaskOptions.html" title="class in io.dapr.workflows">WorkflowTaskOptions</a></dt>
|
||||||
<dd> </dd>
|
<dd> </dd>
|
||||||
|
<dt><a href="io/dapr/workflows/WorkflowTaskOptions.html#%3Cinit%3E(io.dapr.workflows.WorkflowTaskRetryHandler,java.lang.String)" class="member-name-link">WorkflowTaskOptions(WorkflowTaskRetryHandler, String)</a> - Constructor for class io.dapr.workflows.<a href="io/dapr/workflows/WorkflowTaskOptions.html" title="class in io.dapr.workflows">WorkflowTaskOptions</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Constructor for WorkflowTaskOptions with retry handler and app ID.</div>
|
||||||
|
</dd>
|
||||||
<dt><a href="io/dapr/workflows/WorkflowTaskOptions.html#%3Cinit%3E(io.dapr.workflows.WorkflowTaskRetryPolicy)" class="member-name-link">WorkflowTaskOptions(WorkflowTaskRetryPolicy)</a> - Constructor for class io.dapr.workflows.<a href="io/dapr/workflows/WorkflowTaskOptions.html" title="class in io.dapr.workflows">WorkflowTaskOptions</a></dt>
|
<dt><a href="io/dapr/workflows/WorkflowTaskOptions.html#%3Cinit%3E(io.dapr.workflows.WorkflowTaskRetryPolicy)" class="member-name-link">WorkflowTaskOptions(WorkflowTaskRetryPolicy)</a> - Constructor for class io.dapr.workflows.<a href="io/dapr/workflows/WorkflowTaskOptions.html" title="class in io.dapr.workflows">WorkflowTaskOptions</a></dt>
|
||||||
<dd> </dd>
|
<dd> </dd>
|
||||||
<dt><a href="io/dapr/workflows/WorkflowTaskOptions.html#%3Cinit%3E(io.dapr.workflows.WorkflowTaskRetryPolicy,io.dapr.workflows.WorkflowTaskRetryHandler)" class="member-name-link">WorkflowTaskOptions(WorkflowTaskRetryPolicy, WorkflowTaskRetryHandler)</a> - Constructor for class io.dapr.workflows.<a href="io/dapr/workflows/WorkflowTaskOptions.html" title="class in io.dapr.workflows">WorkflowTaskOptions</a></dt>
|
<dt><a href="io/dapr/workflows/WorkflowTaskOptions.html#%3Cinit%3E(io.dapr.workflows.WorkflowTaskRetryPolicy,io.dapr.workflows.WorkflowTaskRetryHandler)" class="member-name-link">WorkflowTaskOptions(WorkflowTaskRetryPolicy, WorkflowTaskRetryHandler)</a> - Constructor for class io.dapr.workflows.<a href="io/dapr/workflows/WorkflowTaskOptions.html" title="class in io.dapr.workflows">WorkflowTaskOptions</a></dt>
|
||||||
<dd> </dd>
|
<dd> </dd>
|
||||||
|
<dt><a href="io/dapr/workflows/WorkflowTaskOptions.html#%3Cinit%3E(io.dapr.workflows.WorkflowTaskRetryPolicy,io.dapr.workflows.WorkflowTaskRetryHandler,java.lang.String)" class="member-name-link">WorkflowTaskOptions(WorkflowTaskRetryPolicy, WorkflowTaskRetryHandler, String)</a> - Constructor for class io.dapr.workflows.<a href="io/dapr/workflows/WorkflowTaskOptions.html" title="class in io.dapr.workflows">WorkflowTaskOptions</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Constructor for WorkflowTaskOptions with retry policy, retry handler, and app ID.</div>
|
||||||
|
</dd>
|
||||||
|
<dt><a href="io/dapr/workflows/WorkflowTaskOptions.html#%3Cinit%3E(io.dapr.workflows.WorkflowTaskRetryPolicy,java.lang.String)" class="member-name-link">WorkflowTaskOptions(WorkflowTaskRetryPolicy, String)</a> - Constructor for class io.dapr.workflows.<a href="io/dapr/workflows/WorkflowTaskOptions.html" title="class in io.dapr.workflows">WorkflowTaskOptions</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Constructor for WorkflowTaskOptions with retry policy and app ID.</div>
|
||||||
|
</dd>
|
||||||
|
<dt><a href="io/dapr/workflows/WorkflowTaskOptions.html#%3Cinit%3E(java.lang.String)" class="member-name-link">WorkflowTaskOptions(String)</a> - Constructor for class io.dapr.workflows.<a href="io/dapr/workflows/WorkflowTaskOptions.html" title="class in io.dapr.workflows">WorkflowTaskOptions</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Constructor for WorkflowTaskOptions with app ID for cross-app calls.</div>
|
||||||
|
</dd>
|
||||||
<dt><a href="io/dapr/workflows/WorkflowTaskRetryContext.html" class="type-name-link" title="class in io.dapr.workflows">WorkflowTaskRetryContext</a> - Class in <a href="io/dapr/workflows/package-summary.html">io.dapr.workflows</a></dt>
|
<dt><a href="io/dapr/workflows/WorkflowTaskRetryContext.html" class="type-name-link" title="class in io.dapr.workflows">WorkflowTaskRetryContext</a> - Class in <a href="io/dapr/workflows/package-summary.html">io.dapr.workflows</a></dt>
|
||||||
<dd> </dd>
|
<dd> </dd>
|
||||||
<dt><a href="io/dapr/workflows/WorkflowTaskRetryContext.html#%3Cinit%3E(io.dapr.workflows.runtime.DefaultWorkflowContext,int,io.dapr.workflows.client.WorkflowFailureDetails,java.time.Duration)" class="member-name-link">WorkflowTaskRetryContext(DefaultWorkflowContext, int, WorkflowFailureDetails, Duration)</a> - Constructor for class io.dapr.workflows.<a href="io/dapr/workflows/WorkflowTaskRetryContext.html" title="class in io.dapr.workflows">WorkflowTaskRetryContext</a></dt>
|
<dt><a href="io/dapr/workflows/WorkflowTaskRetryContext.html#%3Cinit%3E(io.dapr.workflows.runtime.DefaultWorkflowContext,int,io.dapr.workflows.client.WorkflowFailureDetails,java.time.Duration)" class="member-name-link">WorkflowTaskRetryContext(DefaultWorkflowContext, int, WorkflowFailureDetails, Duration)</a> - Constructor for class io.dapr.workflows.<a href="io/dapr/workflows/WorkflowTaskRetryContext.html" title="class in io.dapr.workflows">WorkflowTaskRetryContext</a></dt>
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>Overview (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>Overview (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="package index">
|
<meta name="description" content="package index">
|
||||||
<meta name="generator" content="javadoc/PackageIndexWriter">
|
<meta name="generator" content="javadoc/PackageIndexWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||||
|
|
@ -49,7 +49,7 @@ loadScripts(document, 'script');</script>
|
||||||
<div class="flex-content">
|
<div class="flex-content">
|
||||||
<main role="main">
|
<main role="main">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<h1 class="title">dapr-sdk-workflows 0.15.0 API</h1>
|
<h1 class="title">dapr-sdk-workflows 0.15.1 API</h1>
|
||||||
</div>
|
</div>
|
||||||
<div id="all-packages-table">
|
<div id="all-packages-table">
|
||||||
<div class="caption"><span>Packages</span></div>
|
<div class="caption"><span>Packages</span></div>
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>Workflow (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>Workflow (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.workflows, interface: Workflow">
|
<meta name="description" content="declaration: package: io.dapr.workflows, interface: Workflow">
|
||||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>WorkflowContext (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>WorkflowContext (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.workflows, interface: WorkflowContext">
|
<meta name="description" content="declaration: package: io.dapr.workflows, interface: WorkflowContext">
|
||||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>WorkflowStub (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>WorkflowStub (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.workflows, interface: WorkflowStub">
|
<meta name="description" content="declaration: package: io.dapr.workflows, interface: WorkflowStub">
|
||||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>Uses of Interface io.dapr.workflows.Workflow (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>Uses of Interface io.dapr.workflows.Workflow (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="use: package: io.dapr.workflows, interface: Workflow">
|
<meta name="description" content="use: package: io.dapr.workflows, interface: Workflow">
|
||||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>Uses of Interface io.dapr.workflows.WorkflowContext (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>Uses of Interface io.dapr.workflows.WorkflowContext (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="use: package: io.dapr.workflows, interface: WorkflowContext">
|
<meta name="description" content="use: package: io.dapr.workflows, interface: WorkflowContext">
|
||||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>Uses of Interface io.dapr.workflows.WorkflowStub (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>Uses of Interface io.dapr.workflows.WorkflowStub (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="use: package: io.dapr.workflows, interface: WorkflowStub">
|
<meta name="description" content="use: package: io.dapr.workflows, interface: WorkflowStub">
|
||||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>DaprWorkflowClient (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>DaprWorkflowClient (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.workflows.client, class: DaprWorkflowClient">
|
<meta name="description" content="declaration: package: io.dapr.workflows.client, class: DaprWorkflowClient">
|
||||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>WorkflowFailureDetails (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>WorkflowFailureDetails (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.workflows.client, interface: WorkflowFailureDetails">
|
<meta name="description" content="declaration: package: io.dapr.workflows.client, interface: WorkflowFailureDetails">
|
||||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>WorkflowInstanceStatus (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>WorkflowInstanceStatus (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.workflows.client, interface: WorkflowInstanceStatus">
|
<meta name="description" content="declaration: package: io.dapr.workflows.client, interface: WorkflowInstanceStatus">
|
||||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>Uses of Class io.dapr.workflows.client.DaprWorkflowClient (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>Uses of Class io.dapr.workflows.client.DaprWorkflowClient (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="use: package: io.dapr.workflows.client, class: DaprWorkflowClient">
|
<meta name="description" content="use: package: io.dapr.workflows.client, class: DaprWorkflowClient">
|
||||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>Uses of Interface io.dapr.workflows.client.WorkflowFailureDetails (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>Uses of Interface io.dapr.workflows.client.WorkflowFailureDetails (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="use: package: io.dapr.workflows.client, interface: WorkflowFailureDetails">
|
<meta name="description" content="use: package: io.dapr.workflows.client, interface: WorkflowFailureDetails">
|
||||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>Uses of Interface io.dapr.workflows.client.WorkflowInstanceStatus (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>Uses of Interface io.dapr.workflows.client.WorkflowInstanceStatus (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="use: package: io.dapr.workflows.client, interface: WorkflowInstanceStatus">
|
<meta name="description" content="use: package: io.dapr.workflows.client, interface: WorkflowInstanceStatus">
|
||||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>io.dapr.workflows.client (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>io.dapr.workflows.client (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.workflows.client">
|
<meta name="description" content="declaration: package: io.dapr.workflows.client">
|
||||||
<meta name="generator" content="javadoc/PackageWriterImpl">
|
<meta name="generator" content="javadoc/PackageWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>io.dapr.workflows.client Class Hierarchy (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>io.dapr.workflows.client Class Hierarchy (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="tree: package: io.dapr.workflows.client">
|
<meta name="description" content="tree: package: io.dapr.workflows.client">
|
||||||
<meta name="generator" content="javadoc/PackageTreeWriter">
|
<meta name="generator" content="javadoc/PackageTreeWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>Uses of Package io.dapr.workflows.client (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>Uses of Package io.dapr.workflows.client (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="use: package: io.dapr.workflows.client">
|
<meta name="description" content="use: package: io.dapr.workflows.client">
|
||||||
<meta name="generator" content="javadoc/PackageUseWriter">
|
<meta name="generator" content="javadoc/PackageUseWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>ApiTokenClientInterceptor (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>ApiTokenClientInterceptor (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.workflows.internal, class: ApiTokenClientInterceptor">
|
<meta name="description" content="declaration: package: io.dapr.workflows.internal, class: ApiTokenClientInterceptor">
|
||||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>Uses of Class io.dapr.workflows.internal.ApiTokenClientInterceptor (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>Uses of Class io.dapr.workflows.internal.ApiTokenClientInterceptor (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="use: package: io.dapr.workflows.internal, class: ApiTokenClientInterceptor">
|
<meta name="description" content="use: package: io.dapr.workflows.internal, class: ApiTokenClientInterceptor">
|
||||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>io.dapr.workflows.internal (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>io.dapr.workflows.internal (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.workflows.internal">
|
<meta name="description" content="declaration: package: io.dapr.workflows.internal">
|
||||||
<meta name="generator" content="javadoc/PackageWriterImpl">
|
<meta name="generator" content="javadoc/PackageWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>io.dapr.workflows.internal Class Hierarchy (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>io.dapr.workflows.internal Class Hierarchy (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="tree: package: io.dapr.workflows.internal">
|
<meta name="description" content="tree: package: io.dapr.workflows.internal">
|
||||||
<meta name="generator" content="javadoc/PackageTreeWriter">
|
<meta name="generator" content="javadoc/PackageTreeWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>Uses of Package io.dapr.workflows.internal (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>Uses of Package io.dapr.workflows.internal (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="use: package: io.dapr.workflows.internal">
|
<meta name="description" content="use: package: io.dapr.workflows.internal">
|
||||||
<meta name="generator" content="javadoc/PackageUseWriter">
|
<meta name="generator" content="javadoc/PackageUseWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>io.dapr.workflows (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>io.dapr.workflows (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.workflows">
|
<meta name="description" content="declaration: package: io.dapr.workflows">
|
||||||
<meta name="generator" content="javadoc/PackageWriterImpl">
|
<meta name="generator" content="javadoc/PackageWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>io.dapr.workflows Class Hierarchy (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>io.dapr.workflows Class Hierarchy (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="tree: package: io.dapr.workflows">
|
<meta name="description" content="tree: package: io.dapr.workflows">
|
||||||
<meta name="generator" content="javadoc/PackageTreeWriter">
|
<meta name="generator" content="javadoc/PackageTreeWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>Uses of Package io.dapr.workflows (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>Uses of Package io.dapr.workflows (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="use: package: io.dapr.workflows">
|
<meta name="description" content="use: package: io.dapr.workflows">
|
||||||
<meta name="generator" content="javadoc/PackageUseWriter">
|
<meta name="generator" content="javadoc/PackageUseWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>WorkflowRuntime (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>WorkflowRuntime (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.workflows.runtime, class: WorkflowRuntime">
|
<meta name="description" content="declaration: package: io.dapr.workflows.runtime, class: WorkflowRuntime">
|
||||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>WorkflowRuntimeBuilder (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>WorkflowRuntimeBuilder (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.workflows.runtime, class: WorkflowRuntimeBuilder">
|
<meta name="description" content="declaration: package: io.dapr.workflows.runtime, class: WorkflowRuntimeBuilder">
|
||||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>Uses of Class io.dapr.workflows.runtime.WorkflowRuntime (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>Uses of Class io.dapr.workflows.runtime.WorkflowRuntime (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="use: package: io.dapr.workflows.runtime, class: WorkflowRuntime">
|
<meta name="description" content="use: package: io.dapr.workflows.runtime, class: WorkflowRuntime">
|
||||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>Uses of Class io.dapr.workflows.runtime.WorkflowRuntimeBuilder (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>Uses of Class io.dapr.workflows.runtime.WorkflowRuntimeBuilder (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="use: package: io.dapr.workflows.runtime, class: WorkflowRuntimeBuilder">
|
<meta name="description" content="use: package: io.dapr.workflows.runtime, class: WorkflowRuntimeBuilder">
|
||||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>io.dapr.workflows.runtime (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>io.dapr.workflows.runtime (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.workflows.runtime">
|
<meta name="description" content="declaration: package: io.dapr.workflows.runtime">
|
||||||
<meta name="generator" content="javadoc/PackageWriterImpl">
|
<meta name="generator" content="javadoc/PackageWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>io.dapr.workflows.runtime Class Hierarchy (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>io.dapr.workflows.runtime Class Hierarchy (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="tree: package: io.dapr.workflows.runtime">
|
<meta name="description" content="tree: package: io.dapr.workflows.runtime">
|
||||||
<meta name="generator" content="javadoc/PackageTreeWriter">
|
<meta name="generator" content="javadoc/PackageTreeWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>Uses of Package io.dapr.workflows.runtime (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>Uses of Package io.dapr.workflows.runtime (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="use: package: io.dapr.workflows.runtime">
|
<meta name="description" content="use: package: io.dapr.workflows.runtime">
|
||||||
<meta name="generator" content="javadoc/PackageUseWriter">
|
<meta name="generator" content="javadoc/PackageUseWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>dapr-sdk-workflows 0.15.0 API</title>
|
<title>dapr-sdk-workflows 0.15.1 API</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="index redirect">
|
<meta name="description" content="index redirect">
|
||||||
<meta name="generator" content="javadoc/IndexRedirectWriter">
|
<meta name="generator" content="javadoc/IndexRedirectWriter">
|
||||||
<link rel="canonical" href="index.html">
|
<link rel="canonical" href="index.html">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:21:34 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:57:18 UTC 2025 -->
|
||||||
<title>Class Hierarchy (dapr-sdk-workflows 0.15.0 API)</title>
|
<title>Class Hierarchy (dapr-sdk-workflows 0.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="class tree">
|
<meta name="description" content="class tree">
|
||||||
<meta name="generator" content="javadoc/TreeWriter">
|
<meta name="generator" content="javadoc/TreeWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<!--
|
<!--
|
||||||
| Generated by Apache Maven Doxia Site Renderer 1.9.1 from org.apache.maven.plugins:maven-site-plugin:3.8.2:CategorySummaryDocumentRenderer at 2025-08-13
|
| Generated by Apache Maven Doxia Site Renderer 1.9.1 from org.apache.maven.plugins:maven-site-plugin:3.8.2:CategorySummaryDocumentRenderer at 2025-08-26
|
||||||
|
|
||||||
| Rendered using Apache Maven Default Skin
|
| Rendered using Apache Maven Default Skin
|
||||||
-->
|
-->
|
||||||
|
|
@ -25,8 +25,8 @@
|
||||||
</div>
|
</div>
|
||||||
<div id="breadcrumbs">
|
<div id="breadcrumbs">
|
||||||
<div class="xleft">
|
<div class="xleft">
|
||||||
<span id="publishDate">Last Published: 2025-08-13</span>
|
<span id="publishDate">Last Published: 2025-08-26</span>
|
||||||
 | <span id="projectVersion">Version: 0.15.0</span>
|
 | <span id="projectVersion">Version: 0.15.1</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="xright"><a href="./" title="dapr-sdk-workflows">dapr-sdk-workflows</a> </div>
|
<div class="xright"><a href="./" title="dapr-sdk-workflows">dapr-sdk-workflows</a> </div>
|
||||||
<div class="clear">
|
<div class="clear">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>Deprecated List (dapr-sdk-parent 1.15.0 API)</title>
|
<title>Deprecated List (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="deprecated elements">
|
<meta name="description" content="deprecated elements">
|
||||||
<meta name="generator" content="javadoc/DeprecatedListWriter">
|
<meta name="generator" content="javadoc/DeprecatedListWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>API Help (dapr-sdk-parent 1.15.0 API)</title>
|
<title>API Help (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="help">
|
<meta name="description" content="help">
|
||||||
<meta name="generator" content="javadoc/HelpWriter">
|
<meta name="generator" content="javadoc/HelpWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>Index (dapr-sdk-parent 1.15.0 API)</title>
|
<title>Index (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="index">
|
<meta name="description" content="index">
|
||||||
<meta name="generator" content="javadoc/IndexWriter">
|
<meta name="generator" content="javadoc/IndexWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||||
|
|
@ -9796,6 +9796,8 @@ loadScripts(document, 'script');</script>
|
||||||
<dd> </dd>
|
<dd> </dd>
|
||||||
<dt><a href="io/dapr/client/domain/InvokeMethodRequest.html#getAppId()" class="member-name-link">getAppId()</a> - Method in class io.dapr.client.domain.<a href="io/dapr/client/domain/InvokeMethodRequest.html" title="class in io.dapr.client.domain">InvokeMethodRequest</a></dt>
|
<dt><a href="io/dapr/client/domain/InvokeMethodRequest.html#getAppId()" class="member-name-link">getAppId()</a> - Method in class io.dapr.client.domain.<a href="io/dapr/client/domain/InvokeMethodRequest.html" title="class in io.dapr.client.domain">InvokeMethodRequest</a></dt>
|
||||||
<dd> </dd>
|
<dd> </dd>
|
||||||
|
<dt><a href="io/dapr/workflows/WorkflowTaskOptions.html#getAppId()" class="member-name-link">getAppId()</a> - Method in class io.dapr.workflows.<a href="io/dapr/workflows/WorkflowTaskOptions.html" title="class in io.dapr.workflows">WorkflowTaskOptions</a></dt>
|
||||||
|
<dd> </dd>
|
||||||
<dt><a href="io/dapr/testcontainers/DaprContainer.html#getAppName()" class="member-name-link">getAppName()</a> - Method in class io.dapr.testcontainers.<a href="io/dapr/testcontainers/DaprContainer.html" title="class in io.dapr.testcontainers">DaprContainer</a></dt>
|
<dt><a href="io/dapr/testcontainers/DaprContainer.html#getAppName()" class="member-name-link">getAppName()</a> - Method in class io.dapr.testcontainers.<a href="io/dapr/testcontainers/DaprContainer.html" title="class in io.dapr.testcontainers">DaprContainer</a></dt>
|
||||||
<dd> </dd>
|
<dd> </dd>
|
||||||
<dt><a href="io/dapr/testcontainers/DaprContainer.html#getAppPort()" class="member-name-link">getAppPort()</a> - Method in class io.dapr.testcontainers.<a href="io/dapr/testcontainers/DaprContainer.html" title="class in io.dapr.testcontainers">DaprContainer</a></dt>
|
<dt><a href="io/dapr/testcontainers/DaprContainer.html#getAppPort()" class="member-name-link">getAppPort()</a> - Method in class io.dapr.testcontainers.<a href="io/dapr/testcontainers/DaprContainer.html" title="class in io.dapr.testcontainers">DaprContainer</a></dt>
|
||||||
|
|
@ -43208,10 +43210,26 @@ the order they are declared.</div>
|
||||||
<dd> </dd>
|
<dd> </dd>
|
||||||
<dt><a href="io/dapr/workflows/WorkflowTaskOptions.html#%3Cinit%3E(io.dapr.workflows.WorkflowTaskRetryHandler)" class="member-name-link">WorkflowTaskOptions(WorkflowTaskRetryHandler)</a> - Constructor for class io.dapr.workflows.<a href="io/dapr/workflows/WorkflowTaskOptions.html" title="class in io.dapr.workflows">WorkflowTaskOptions</a></dt>
|
<dt><a href="io/dapr/workflows/WorkflowTaskOptions.html#%3Cinit%3E(io.dapr.workflows.WorkflowTaskRetryHandler)" class="member-name-link">WorkflowTaskOptions(WorkflowTaskRetryHandler)</a> - Constructor for class io.dapr.workflows.<a href="io/dapr/workflows/WorkflowTaskOptions.html" title="class in io.dapr.workflows">WorkflowTaskOptions</a></dt>
|
||||||
<dd> </dd>
|
<dd> </dd>
|
||||||
|
<dt><a href="io/dapr/workflows/WorkflowTaskOptions.html#%3Cinit%3E(io.dapr.workflows.WorkflowTaskRetryHandler,java.lang.String)" class="member-name-link">WorkflowTaskOptions(WorkflowTaskRetryHandler, String)</a> - Constructor for class io.dapr.workflows.<a href="io/dapr/workflows/WorkflowTaskOptions.html" title="class in io.dapr.workflows">WorkflowTaskOptions</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Constructor for WorkflowTaskOptions with retry handler and app ID.</div>
|
||||||
|
</dd>
|
||||||
<dt><a href="io/dapr/workflows/WorkflowTaskOptions.html#%3Cinit%3E(io.dapr.workflows.WorkflowTaskRetryPolicy)" class="member-name-link">WorkflowTaskOptions(WorkflowTaskRetryPolicy)</a> - Constructor for class io.dapr.workflows.<a href="io/dapr/workflows/WorkflowTaskOptions.html" title="class in io.dapr.workflows">WorkflowTaskOptions</a></dt>
|
<dt><a href="io/dapr/workflows/WorkflowTaskOptions.html#%3Cinit%3E(io.dapr.workflows.WorkflowTaskRetryPolicy)" class="member-name-link">WorkflowTaskOptions(WorkflowTaskRetryPolicy)</a> - Constructor for class io.dapr.workflows.<a href="io/dapr/workflows/WorkflowTaskOptions.html" title="class in io.dapr.workflows">WorkflowTaskOptions</a></dt>
|
||||||
<dd> </dd>
|
<dd> </dd>
|
||||||
<dt><a href="io/dapr/workflows/WorkflowTaskOptions.html#%3Cinit%3E(io.dapr.workflows.WorkflowTaskRetryPolicy,io.dapr.workflows.WorkflowTaskRetryHandler)" class="member-name-link">WorkflowTaskOptions(WorkflowTaskRetryPolicy, WorkflowTaskRetryHandler)</a> - Constructor for class io.dapr.workflows.<a href="io/dapr/workflows/WorkflowTaskOptions.html" title="class in io.dapr.workflows">WorkflowTaskOptions</a></dt>
|
<dt><a href="io/dapr/workflows/WorkflowTaskOptions.html#%3Cinit%3E(io.dapr.workflows.WorkflowTaskRetryPolicy,io.dapr.workflows.WorkflowTaskRetryHandler)" class="member-name-link">WorkflowTaskOptions(WorkflowTaskRetryPolicy, WorkflowTaskRetryHandler)</a> - Constructor for class io.dapr.workflows.<a href="io/dapr/workflows/WorkflowTaskOptions.html" title="class in io.dapr.workflows">WorkflowTaskOptions</a></dt>
|
||||||
<dd> </dd>
|
<dd> </dd>
|
||||||
|
<dt><a href="io/dapr/workflows/WorkflowTaskOptions.html#%3Cinit%3E(io.dapr.workflows.WorkflowTaskRetryPolicy,io.dapr.workflows.WorkflowTaskRetryHandler,java.lang.String)" class="member-name-link">WorkflowTaskOptions(WorkflowTaskRetryPolicy, WorkflowTaskRetryHandler, String)</a> - Constructor for class io.dapr.workflows.<a href="io/dapr/workflows/WorkflowTaskOptions.html" title="class in io.dapr.workflows">WorkflowTaskOptions</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Constructor for WorkflowTaskOptions with retry policy, retry handler, and app ID.</div>
|
||||||
|
</dd>
|
||||||
|
<dt><a href="io/dapr/workflows/WorkflowTaskOptions.html#%3Cinit%3E(io.dapr.workflows.WorkflowTaskRetryPolicy,java.lang.String)" class="member-name-link">WorkflowTaskOptions(WorkflowTaskRetryPolicy, String)</a> - Constructor for class io.dapr.workflows.<a href="io/dapr/workflows/WorkflowTaskOptions.html" title="class in io.dapr.workflows">WorkflowTaskOptions</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Constructor for WorkflowTaskOptions with retry policy and app ID.</div>
|
||||||
|
</dd>
|
||||||
|
<dt><a href="io/dapr/workflows/WorkflowTaskOptions.html#%3Cinit%3E(java.lang.String)" class="member-name-link">WorkflowTaskOptions(String)</a> - Constructor for class io.dapr.workflows.<a href="io/dapr/workflows/WorkflowTaskOptions.html" title="class in io.dapr.workflows">WorkflowTaskOptions</a></dt>
|
||||||
|
<dd>
|
||||||
|
<div class="block">Constructor for WorkflowTaskOptions with app ID for cross-app calls.</div>
|
||||||
|
</dd>
|
||||||
<dt><a href="io/dapr/workflows/WorkflowTaskRetryContext.html" class="type-name-link" title="class in io.dapr.workflows">WorkflowTaskRetryContext</a> - Class in <a href="io/dapr/workflows/package-summary.html">io.dapr.workflows</a></dt>
|
<dt><a href="io/dapr/workflows/WorkflowTaskRetryContext.html" class="type-name-link" title="class in io.dapr.workflows">WorkflowTaskRetryContext</a> - Class in <a href="io/dapr/workflows/package-summary.html">io.dapr.workflows</a></dt>
|
||||||
<dd> </dd>
|
<dd> </dd>
|
||||||
<dt><a href="io/dapr/workflows/WorkflowTaskRetryContext.html#%3Cinit%3E(io.dapr.workflows.runtime.DefaultWorkflowContext,int,io.dapr.workflows.client.WorkflowFailureDetails,java.time.Duration)" class="member-name-link">WorkflowTaskRetryContext(DefaultWorkflowContext, int, WorkflowFailureDetails, Duration)</a> - Constructor for class io.dapr.workflows.<a href="io/dapr/workflows/WorkflowTaskRetryContext.html" title="class in io.dapr.workflows">WorkflowTaskRetryContext</a></dt>
|
<dt><a href="io/dapr/workflows/WorkflowTaskRetryContext.html#%3Cinit%3E(io.dapr.workflows.runtime.DefaultWorkflowContext,int,io.dapr.workflows.client.WorkflowFailureDetails,java.time.Duration)" class="member-name-link">WorkflowTaskRetryContext(DefaultWorkflowContext, int, WorkflowFailureDetails, Duration)</a> - Constructor for class io.dapr.workflows.<a href="io/dapr/workflows/WorkflowTaskRetryContext.html" title="class in io.dapr.workflows">WorkflowTaskRetryContext</a></dt>
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>Overview (dapr-sdk-parent 1.15.0 API)</title>
|
<title>Overview (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="package index">
|
<meta name="description" content="package index">
|
||||||
<meta name="generator" content="javadoc/PackageIndexWriter">
|
<meta name="generator" content="javadoc/PackageIndexWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||||
|
|
@ -50,7 +50,7 @@ loadScripts(document, 'script');</script>
|
||||||
<div class="flex-content">
|
<div class="flex-content">
|
||||||
<main role="main">
|
<main role="main">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<h1 class="title">dapr-sdk-parent 1.15.0 API</h1>
|
<h1 class="title">dapr-sdk-parent 1.15.1 API</h1>
|
||||||
</div>
|
</div>
|
||||||
<div id="all-packages-table">
|
<div id="all-packages-table">
|
||||||
<div class="caption"><span>Packages</span></div>
|
<div class="caption"><span>Packages</span></div>
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>Rule (dapr-sdk-parent 1.15.0 API)</title>
|
<title>Rule (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr, annotation type: Rule">
|
<meta name="description" content="declaration: package: io.dapr, annotation type: Rule">
|
||||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>Topic (dapr-sdk-parent 1.15.0 API)</title>
|
<title>Topic (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr, annotation type: Topic">
|
<meta name="description" content="declaration: package: io.dapr, annotation type: Topic">
|
||||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>ActorId (dapr-sdk-parent 1.15.0 API)</title>
|
<title>ActorId (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.actors, class: ActorId">
|
<meta name="description" content="declaration: package: io.dapr.actors, class: ActorId">
|
||||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>ActorMethod (dapr-sdk-parent 1.15.0 API)</title>
|
<title>ActorMethod (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.actors, annotation type: ActorMethod">
|
<meta name="description" content="declaration: package: io.dapr.actors, annotation type: ActorMethod">
|
||||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>ActorTrace (dapr-sdk-parent 1.15.0 API)</title>
|
<title>ActorTrace (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.actors, class: ActorTrace">
|
<meta name="description" content="declaration: package: io.dapr.actors, class: ActorTrace">
|
||||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>ActorType (dapr-sdk-parent 1.15.0 API)</title>
|
<title>ActorType (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.actors, annotation type: ActorType">
|
<meta name="description" content="declaration: package: io.dapr.actors, annotation type: ActorType">
|
||||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>ActorUtils (dapr-sdk-parent 1.15.0 API)</title>
|
<title>ActorUtils (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.actors, class: ActorUtils">
|
<meta name="description" content="declaration: package: io.dapr.actors, class: ActorUtils">
|
||||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>Uses of Class io.dapr.actors.ActorId (dapr-sdk-parent 1.15.0 API)</title>
|
<title>Uses of Class io.dapr.actors.ActorId (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="use: package: io.dapr.actors, class: ActorId">
|
<meta name="description" content="use: package: io.dapr.actors, class: ActorId">
|
||||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>Uses of Annotation Type io.dapr.actors.ActorMethod (dapr-sdk-parent 1.15.0 API)</title>
|
<title>Uses of Annotation Type io.dapr.actors.ActorMethod (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="use: package: io.dapr.actors, annotation type: ActorMethod">
|
<meta name="description" content="use: package: io.dapr.actors, annotation type: ActorMethod">
|
||||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>Uses of Class io.dapr.actors.ActorTrace (dapr-sdk-parent 1.15.0 API)</title>
|
<title>Uses of Class io.dapr.actors.ActorTrace (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="use: package: io.dapr.actors, class: ActorTrace">
|
<meta name="description" content="use: package: io.dapr.actors, class: ActorTrace">
|
||||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>Uses of Annotation Type io.dapr.actors.ActorType (dapr-sdk-parent 1.15.0 API)</title>
|
<title>Uses of Annotation Type io.dapr.actors.ActorType (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="use: package: io.dapr.actors, annotation type: ActorType">
|
<meta name="description" content="use: package: io.dapr.actors, annotation type: ActorType">
|
||||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>Uses of Class io.dapr.actors.ActorUtils (dapr-sdk-parent 1.15.0 API)</title>
|
<title>Uses of Class io.dapr.actors.ActorUtils (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="use: package: io.dapr.actors, class: ActorUtils">
|
<meta name="description" content="use: package: io.dapr.actors, class: ActorUtils">
|
||||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>ActorClient (dapr-sdk-parent 1.15.0 API)</title>
|
<title>ActorClient (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.actors.client, class: ActorClient">
|
<meta name="description" content="declaration: package: io.dapr.actors.client, class: ActorClient">
|
||||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>ActorProxy (dapr-sdk-parent 1.15.0 API)</title>
|
<title>ActorProxy (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.actors.client, interface: ActorProxy">
|
<meta name="description" content="declaration: package: io.dapr.actors.client, interface: ActorProxy">
|
||||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>ActorProxyBuilder (dapr-sdk-parent 1.15.0 API)</title>
|
<title>ActorProxyBuilder (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.actors.client, class: ActorProxyBuilder">
|
<meta name="description" content="declaration: package: io.dapr.actors.client, class: ActorProxyBuilder">
|
||||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>Uses of Class io.dapr.actors.client.ActorClient (dapr-sdk-parent 1.15.0 API)</title>
|
<title>Uses of Class io.dapr.actors.client.ActorClient (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="use: package: io.dapr.actors.client, class: ActorClient">
|
<meta name="description" content="use: package: io.dapr.actors.client, class: ActorClient">
|
||||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>Uses of Interface io.dapr.actors.client.ActorProxy (dapr-sdk-parent 1.15.0 API)</title>
|
<title>Uses of Interface io.dapr.actors.client.ActorProxy (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="use: package: io.dapr.actors.client, interface: ActorProxy">
|
<meta name="description" content="use: package: io.dapr.actors.client, interface: ActorProxy">
|
||||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>Uses of Class io.dapr.actors.client.ActorProxyBuilder (dapr-sdk-parent 1.15.0 API)</title>
|
<title>Uses of Class io.dapr.actors.client.ActorProxyBuilder (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="use: package: io.dapr.actors.client, class: ActorProxyBuilder">
|
<meta name="description" content="use: package: io.dapr.actors.client, class: ActorProxyBuilder">
|
||||||
<meta name="generator" content="javadoc/ClassUseWriter">
|
<meta name="generator" content="javadoc/ClassUseWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>io.dapr.actors.client (dapr-sdk-parent 1.15.0 API)</title>
|
<title>io.dapr.actors.client (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.actors.client">
|
<meta name="description" content="declaration: package: io.dapr.actors.client">
|
||||||
<meta name="generator" content="javadoc/PackageWriterImpl">
|
<meta name="generator" content="javadoc/PackageWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>io.dapr.actors.client Class Hierarchy (dapr-sdk-parent 1.15.0 API)</title>
|
<title>io.dapr.actors.client Class Hierarchy (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="tree: package: io.dapr.actors.client">
|
<meta name="description" content="tree: package: io.dapr.actors.client">
|
||||||
<meta name="generator" content="javadoc/PackageTreeWriter">
|
<meta name="generator" content="javadoc/PackageTreeWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>Uses of Package io.dapr.actors.client (dapr-sdk-parent 1.15.0 API)</title>
|
<title>Uses of Package io.dapr.actors.client (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="use: package: io.dapr.actors.client">
|
<meta name="description" content="use: package: io.dapr.actors.client">
|
||||||
<meta name="generator" content="javadoc/PackageUseWriter">
|
<meta name="generator" content="javadoc/PackageUseWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>io.dapr.actors (dapr-sdk-parent 1.15.0 API)</title>
|
<title>io.dapr.actors (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.actors">
|
<meta name="description" content="declaration: package: io.dapr.actors">
|
||||||
<meta name="generator" content="javadoc/PackageWriterImpl">
|
<meta name="generator" content="javadoc/PackageWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>io.dapr.actors Class Hierarchy (dapr-sdk-parent 1.15.0 API)</title>
|
<title>io.dapr.actors Class Hierarchy (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="tree: package: io.dapr.actors">
|
<meta name="description" content="tree: package: io.dapr.actors">
|
||||||
<meta name="generator" content="javadoc/PackageTreeWriter">
|
<meta name="generator" content="javadoc/PackageTreeWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>Uses of Package io.dapr.actors (dapr-sdk-parent 1.15.0 API)</title>
|
<title>Uses of Package io.dapr.actors (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="use: package: io.dapr.actors">
|
<meta name="description" content="use: package: io.dapr.actors">
|
||||||
<meta name="generator" content="javadoc/PackageUseWriter">
|
<meta name="generator" content="javadoc/PackageUseWriter">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>AbstractActor (dapr-sdk-parent 1.15.0 API)</title>
|
<title>AbstractActor (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.actors.runtime, class: AbstractActor">
|
<meta name="description" content="declaration: package: io.dapr.actors.runtime, class: AbstractActor">
|
||||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>ActorFactory (dapr-sdk-parent 1.15.0 API)</title>
|
<title>ActorFactory (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.actors.runtime, interface: ActorFactory">
|
<meta name="description" content="declaration: package: io.dapr.actors.runtime, interface: ActorFactory">
|
||||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>ActorMethodContext (dapr-sdk-parent 1.15.0 API)</title>
|
<title>ActorMethodContext (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.actors.runtime, class: ActorMethodContext">
|
<meta name="description" content="declaration: package: io.dapr.actors.runtime, class: ActorMethodContext">
|
||||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>ActorObjectSerializer (dapr-sdk-parent 1.15.0 API)</title>
|
<title>ActorObjectSerializer (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.actors.runtime, class: ActorObjectSerializer">
|
<meta name="description" content="declaration: package: io.dapr.actors.runtime, class: ActorObjectSerializer">
|
||||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>ActorRuntime (dapr-sdk-parent 1.15.0 API)</title>
|
<title>ActorRuntime (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.actors.runtime, class: ActorRuntime">
|
<meta name="description" content="declaration: package: io.dapr.actors.runtime, class: ActorRuntime">
|
||||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>ActorRuntimeConfig (dapr-sdk-parent 1.15.0 API)</title>
|
<title>ActorRuntimeConfig (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.actors.runtime, class: ActorRuntimeConfig">
|
<meta name="description" content="declaration: package: io.dapr.actors.runtime, class: ActorRuntimeConfig">
|
||||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>ActorRuntimeContext (dapr-sdk-parent 1.15.0 API)</title>
|
<title>ActorRuntimeContext (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.actors.runtime, class: ActorRuntimeContext">
|
<meta name="description" content="declaration: package: io.dapr.actors.runtime, class: ActorRuntimeContext">
|
||||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>ActorStateChange (dapr-sdk-parent 1.15.0 API)</title>
|
<title>ActorStateChange (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.actors.runtime, class: ActorStateChange">
|
<meta name="description" content="declaration: package: io.dapr.actors.runtime, class: ActorStateChange">
|
||||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- Generated by javadoc (17) on Wed Aug 13 17:17:15 UTC 2025 -->
|
<!-- Generated by javadoc (17) on Tue Aug 26 11:52:58 UTC 2025 -->
|
||||||
<title>ActorStateChangeKind (dapr-sdk-parent 1.15.0 API)</title>
|
<title>ActorStateChangeKind (dapr-sdk-parent 1.15.1 API)</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="dc.created" content="2025-08-13">
|
<meta name="dc.created" content="2025-08-26">
|
||||||
<meta name="description" content="declaration: package: io.dapr.actors.runtime, enum: ActorStateChangeKind">
|
<meta name="description" content="declaration: package: io.dapr.actors.runtime, enum: ActorStateChangeKind">
|
||||||
<meta name="generator" content="javadoc/ClassWriterImpl">
|
<meta name="generator" content="javadoc/ClassWriterImpl">
|
||||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue