Skip to content

Commit

Permalink
Updated read me with usage
Browse files Browse the repository at this point in the history
  • Loading branch information
Robban1980 committed Dec 2, 2024
1 parent af1657d commit 3098dc0
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion kafka-event-queue/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,33 @@ https://kafka.apache.org/

## kafka-event-queue

Provides ability to consume messages from Kafka
Provides ability to consume messages from Kafka.

## Usage

To use it in an event handler prefix the event with `kafka` followed by the topic.

Example:
```json
{
"name": "kafka_test_event_handler",
"event": "kafka:conductor-event",
"actions": [
{
"action": "start_workflow",
"start_workflow": {
"name": "workflow_triggered_by_kafka",
"input": {
"inlineValue": 1
}
},
"expandInlineJSON": true
}
],
"active": true
}
```


## Configuration

Expand Down

0 comments on commit 3098dc0

Please sign in to comment.