https://github.com/bytebit-org/roblox-batchcollector
A module for collecting batches of items, be they logs or tasks, to be posted together in order.
https://github.com/bytebit-org/roblox-batchcollector
Last synced: 4 months ago
JSON representation
A module for collecting batches of items, be they logs or tasks, to be posted together in order.
- Host: GitHub
- URL: https://github.com/bytebit-org/roblox-batchcollector
- Owner: Bytebit-Org
- License: mit
- Created: 2022-03-21T21:36:19.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-04-05T05:19:01.000Z (about 3 years ago)
- Last Synced: 2025-01-30T04:45:40.556Z (4 months ago)
- Language: TypeScript
- Size: 218 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Batch Collector
Batch Collector is a module for collecting batches of items, be they logs or tasks, to be posted together in order.
## Installation
### roblox-ts
Simply install to your [roblox-ts](https://roblox-ts.com/) project as follows:
```
npm i @rbxts/batch-collector
```### Wally
[Wally](https://github.com/UpliftGames/wally/) users can install this package by adding the following line to their `Wally.toml` under `[dependencies]`:
```
BatchCollector = "bytebit/[email protected]"
```Then just run `wally install`.
### From model file
Model files are uploaded to every release as `.rbxmx` files. You can download the file from the [Releases page](https://github.com/Bytebit-Org/roblox-BatchCollector/releases) and load it into your project however you see fit.### From model asset
New versions of the asset are uploaded with every release. The asset can be added to your Roblox Inventory and then inserted into your Place via Toolbox by getting it [here.](https://www.roblox.com/library/9165031169/Batch-Collector-Package)## Documentation
Documentation can be found [here](https://github.com/Bytebit-Org/roblox-BatchCollector/tree/master/docs), is included in the TypeScript files directly, and was generated using [TypeDoc](https://typedoc.org/).## Example
We'll write a class that uses a `BatchCollector` to collect in-game events that will then be sent to a backend server that tracks all events across all servers and allows them to be viewed by a developer in some sort of dashboard.roblox-ts example
```ts
import { BatchCollector, BatchPostRateLimitingConfiguration, IBatchCollector } from "@rbxts/batch-collector";type GameEvent = {
readonly eventTypeName: string
};const batchPostRateLimitingConfiguration: BatchPostRateLimitingConfiguration = {
maxNumberOfItems: 50; // don't want too many events at once
maxTimeBetweenPostsInSeconds: 30; // don't want too much of a time discrepancy
minTimeBetweenPostsInSeconds: 10; // want to make sure we don't send too many and hit the HttpService limits
};export class GameEventsPoster {
private readonly batchCollector: IBatchCollector;public constructor() {
this.batchCollector = BatchCollector.create(
(gameEventsBatch) => this.postGameEvents(gameEventsBatch),
batchPostRateLimitingConfiguration,
);
}public logGameEvent(gameEvent: GameEvent) {
this.batchCollector.pushItem(gameEvent);
}private postGameEvents(gameEvents: ReadonlyArray) {
// logic to post game events to backend server using HttpService
}
}
```Luau example
```lua
local BatchCollector = require(path.to.modules["batch-collector"]).BatchCollectorlocal batchPostRateLimitingConfiguration = {
maxNumberOfItems = 50, -- don't want too many events at once
maxTimeBetweenPostsInSeconds = 30, -- don't want too much of a time discrepancy
minTimeBetweenPostsInSeconds = 10 -- want to make sure we don't send too many and hit the HttpService limits
}local GameEventsPoster = {}
GameEventsPoster.__index = GameEventsPosterfunction new()
local self = {}
setmetatable(self, GameEventsPoster)self.batchCollector = BatchCollector.create(
function (gameEventsBatch)
_postGameEvents(self, gameEventsBatch)
end,
batchPostRateLimitingConfiguration
)return self
endfunction GameEventsPoster:logGameEvent(gameEvent)
self.batchCollector(pushItem(gameEvent))
endfunction _postGameEvents(self, gameEventsBatch)
-- logic to post game events to backend server using HttpService
endreturn {
new = new
}
```