New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

@emartech/object-batcher-js

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@emartech/object-batcher-js

Used primarily by `@emartech/rabbitmq-client`'s batch consumer.


Version published
Weekly downloads
264
decreased by-0.75%
Maintainers
129
Weekly downloads
 
Created

Object Batcher

Used primarily by @emartech/rabbitmq-client's batch consumer.

Usage

Initialize


const ObjectBatcher = require('@emartech/object-batcher-js');

const objectBatcher = new ObjectBatcher(callback_fn, {
  batchSize,
  batchTimeout,
  [prefetchCount]
});

The callback function will be called after the batchTimeout expires or the pushed items count reaches the set batchSize or the overall pushed items count reaches the given prefecthCount.

Pushing an item into the object batcher

objectBatcher.add(groupBy, payload);

Different payloads with the same groups will be batched and the callback will be called with (groupBy, payloads) arguments.

Reseting state of batcher

objectBatcher.resetState();

This method is mostly usefull during testing. Before each test case you could call resetState to ensure the leftover state from previous run does not interfere with the current one.


Copyright EMARSYS 2020 All rights reserved.

FAQs

Package last updated on 13 Jul 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts