Skip to content
This repository has been archived by the owner on Apr 18, 2024. It is now read-only.

A Node.js utility for consuming (Get) Event Store Competing Consumer subscriptions using Event Store's HTTP API.

Notifications You must be signed in to change notification settings

code11/node-ges-competing-consumer

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-ges-competing-consumer

A Node.js utility for consuming (Get) Event Store Competing Consumer subscriptions using Event Store's HTTP API.

Installation

Available on npm:

npm install @c11/ges-competing-consumer

Documentation

let consumer = new CompetingConsumer(stream, group, handler, options)

The CompetingConsumer constructor takes the following arguments:

  • stream: The stream to consume.
  • group: The name of the configured subscription group.
  • handler: The function to invoke with each incoming event. The handler function must take a single event argument, which is the raw event as received from Event Store. It must return a promise, which resolves when the event has been processed, or rejects in case of an error. When the promise resolves, the event will be ack'ed with Event Store, and when it rejects the event will be nack'ed with Event Store. See Usage example below.
  • options: A hash of options:
    • eventStoreUrl: The Event Store URL with protocol, domain and port. Example: http://eventstore.example.com:2113. If not set, we will default to using process.env.EVENT_STORE_URL. And if neither of those are set an exception will be thrown at runtime.
    • concurrency: Maximum number of events to handle concurrently. Defaults to 1, meaning that the consumer won't pull any events from the subscription until the current event has been handled and ack'ed.
    • onEvent: Callback for logging purposes. Invoked when an even is received. Called with the event as its single argument. Defaults to do nothing.
    • onAck: Callback for logging purposes. Invoked when an event is acked. Called with the event as its single argument. Defaults to do nothing.
    • onNack: Callback for logging purposes. Invoked when an even is nacked. Called with the event as its single argument. Defaults to do nothing.
    • onError: Callback for logging purposes. Invoked when an error occurs (fx a bad status code from Event Store, or a handler that rejects) is received with the event as its single argument. Defaults to console.error() log the error stack.

Note: You must create the Competing Consumer subscription in Event Store first manually.

consumer.start()

Will tell the consumer to start pulling from the subscription. Nothing happens until you call this function.

consumer.stop()

Tells the consumer to stop pulling. Returns a promise which resolves after all already active events have been handled and ack'ed. After the promise resolves it's safe to stop the Node process.

Usage example

const {EventStoreConsumer} = require('../lib/index.js')

function handler(event) {
    //`event` is the raw event from Event Store
    //You can get the event data like this:
    let data = JSON.parse(event.data)

    //The consumer will wait until the `handler` function resolves before ack'ing to Event Store
    return doImportantWork(data) //returns a promise
}

let params = {
            stream: 'MyStream',
            group: 'my-group',
            handler: handler(event),
            concurrency: 5
        }

let consumer = new EventStoreConsumer(params)

//Start pulling events
consumer.start()

//Stop after 10 seconds
setTimeout(function() {
    consumer.stop()
        .then(() => {
            console.log('Done for today!')
            process.exit()
        })
}, 10 * 1000)

About

A Node.js utility for consuming (Get) Event Store Competing Consumer subscriptions using Event Store's HTTP API.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 58.3%
  • JavaScript 40.3%
  • Shell 1.4%