From 8526f9b8c39ea17ff6bbc809a873283cab4de93e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Greffier?= Date: Sun, 6 Oct 2024 16:57:19 +0200 Subject: [PATCH] Update interactive queries documentation with window store --- README.md | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index d707ab1..96eab50 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ need to do: * [Interactive Queries](#interactive-queries) * [Application Server Configuration](#application-server-configuration) * [Web Services](#web-services) - * [Service](#service) + * [Services](#services) * [Topology](#topology) * [Deduplication](#deduplication) * [By Key](#by-key) @@ -367,19 +367,25 @@ Kstreamplify provides web services to query the state stores of your Kafka Strea It handles state stores being on different Kafka Streams instances by providing an [RPC layer](https://docs.confluent.io/platform/current/streams/developer-guide/interactive-queries.html#adding-an-rpc-layer-to-your-application). Here is the list of supported state store types: -- Key-Value +- Key-Value store +- Window store Only state stores with String keys are supported. -### Service +You can use the [Swagger UI](#swagger) to see the available endpoints. -You can leverage the interactive queries service used by the web services layer to serve your own needs. +### Services + +You can leverage the interactive queries services used by the web services layer to serve your own needs. ```java @Component public class MyService { @Autowired - InteractiveQueriesService interactiveQueriesService; + KeyValueStoreService keyValueStoreService; + + @Autowired + WindowStoreService windowStoreService; } ```