Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

feat: typed component client #1685

Merged
merged 28 commits into from
Jun 27, 2023
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
0341a0e
feat: typed component client
aludwiko Jun 16, 2023
c0af818
using ComponentClient in IT tests
aludwiko Jun 20, 2023
38a9779
fmt
aludwiko Jun 20, 2023
b40ca7b
fixing encoding
aludwiko Jun 20, 2023
0c63697
fixing entity keys extraction
aludwiko Jun 20, 2023
775e36c
more methods with arguments
aludwiko Jun 20, 2023
b2cd719
invoke -> params rename
aludwiko Jun 21, 2023
1db78aa
unit testing component client
aludwiko Jun 21, 2023
1c93859
missing deps
aludwiko Jun 21, 2023
43cdcaf
jupiter dep
aludwiko Jun 21, 2023
e92e567
typed version of deferred call composition
aludwiko Jun 22, 2023
9a3c284
fmt
aludwiko Jun 22, 2023
4618fce
removing duplicated encoding
aludwiko Jun 22, 2023
bb3aee5
basic null checks
aludwiko Jun 22, 2023
0212e53
Merge remote-tracking branch 'origin/main' into 1335-spring-sdk-typed…
aludwiko Jun 23, 2023
4b93927
updating implementation to work with new annotations
aludwiko Jun 23, 2023
bda88ad
workflow support
aludwiko Jun 23, 2023
e1e85fa
PR comments
aludwiko Jun 23, 2023
46486f9
docs
aludwiko Jun 23, 2023
d3ea433
PR comments
aludwiko Jun 23, 2023
9d15aa0
comment removed
aludwiko Jun 23, 2023
21f6fee
missing tests for descriptors with generated id
aludwiko Jun 23, 2023
e486d35
moving component client to public package
aludwiko Jun 26, 2023
aba7742
Update sdk/java-sdk-spring/src/main/java/kalix/javasdk/client/Compone…
aludwiko Jun 27, 2023
52e6865
Update sdk/java-sdk-spring/src/main/java/kalix/javasdk/client/Compone…
aludwiko Jun 27, 2023
fd4b709
Update sdk/java-sdk-spring/src/main/java/kalix/javasdk/client/Compone…
aludwiko Jun 27, 2023
c5943ba
Update sdk/java-sdk-spring/src/main/java/kalix/javasdk/client/Compone…
aludwiko Jun 27, 2023
8a201cf
additional documentation
aludwiko Jun 27, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,12 @@ object Dependencies {

val javaSdkSpring = deps ++= sdkDeps ++ springDeps ++ Seq(
"net.aichler" % "jupiter-interface" % JupiterKeys.jupiterVersion.value % IntegrationTest,
"net.aichler" % "jupiter-interface" % JupiterKeys.jupiterVersion.value % Test,
"org.springframework.boot" % "spring-boot-starter-test" % SpringBootVersion % IntegrationTest,
junit5 % IntegrationTest,
"org.assertj" % "assertj-core" % "3.24.0" % IntegrationTest,
junit5 % Test,
"org.assertj" % "assertj-core" % "3.24.2" % IntegrationTest,
"org.assertj" % "assertj-core" % "3.24.2" % Test,
"org.awaitility" % "awaitility" % "4.2.0" % IntegrationTest)

val javaSdkSpringTestKit =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -529,4 +529,12 @@ public static int availableLocalPort() {
public MessageCodec getMessageCodec() {
return kalix.getMessageCodec();
}

/**
* INTERNAL API
*/
@InternalApi
public KalixRunner getRunner() {
return runner;
}
}
Loading