From 33f8114ec06e1d6556c5965a6147bda3ea9b8562 Mon Sep 17 00:00:00 2001 From: masesdevelopers <94312179+masesdevelopers@users.noreply.github.com> Date: Fri, 20 Oct 2023 16:18:42 +0200 Subject: [PATCH] Update template usage guide --- src/documentation/articles/usageTemplates.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/documentation/articles/usageTemplates.md b/src/documentation/articles/usageTemplates.md index 688d0557..40ecd105 100644 --- a/src/documentation/articles/usageTemplates.md +++ b/src/documentation/articles/usageTemplates.md @@ -12,7 +12,8 @@ To install the templates executes the following command within a command shell: The command installs the latest version and on success will list all templates added to the list of available templates. There is single template: -1. kefcoreApp: a project to create a console application using Entity Framework Core provider for Apache Kafka +1. `kefcoreApp`: a project to create a console application using Entity Framework Core provider for Apache Kafka +2. `kefcoreAppWithEvents`: a project to create a console application using Entity Framework Core provider for Apache Kafka which reports events when the back-end send back modifications ## Simple usage @@ -23,4 +24,7 @@ To use one of the available templates run the following command: > the previous command will create a .NET project for an executable. The user shall modify the code to set-up, at least the Apache Kafka broker address, and then execute it against an Apache Kafka server. -The template create the topics and fill them, then execute queries on previously data loaded. \ No newline at end of file + +The `kefcoreApp` template create the topics and fill them, then execute queries on previously data loaded. + +The `kefcoreAppWithEvents` template create the topics and fill them, then execute queries on previously data loaded. While the data are received from the back-end the event handler is triggered so the user can take an action, current behavior is to report something in the console. \ No newline at end of file