1.0.5 • Published 2 years ago

@rbxts/stacks-and-queues v1.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Stacks and Queues

Stacks and Queues is a simple set of implementations of stack and queue data structures.

Installation

roblox-ts

Simply install to your roblox-ts project as follows:

npm i @rbxts/stacks-and-queues

Wally

Wally users can install this package by adding the following line to their Wally.toml under [dependencies]:

StacksAndQueues = "bytebit/stacks-and-queues@1.0.5"

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 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.

Documentation

Documentation can be found here, is included in the TypeScript files directly, and was generated using TypeDoc.

Example

This example uses a Queue to track incoming tasks and attempts to process one every RunService.Heartbeat event.

import { Queue } from "@rbxts/stacks-and-queues";
import { RunService } from "@rbxts/services";

type Task = {}; // some task type

export class TaskProcessor {
  private readonly queue = new Queue<Task>();

  public constructor() {
    this.listenForHeartbeats();
  }

  public queueTask(task: Task) {
    this.queue.push(task);
  }

  private listenForHeartbeats() {
    RunService.Heartbeat.Connect(() => {
      if (this.queue.isEmpty()) {
        return;
      }

      this.processTask(this.queue.pop());
    });
  }

  private processTask(task: Task) {
    // some processing stuff
  }
}
local RunService = game:GetService("RunService")

local Queue = require(path.to.modules["stacks-and-queues"]).Queue

local TaskProcessor = {}
TaskProcessor.__index = TaskProcessor

function new()
  local self = {}
  setmetatable(self, TaskProcessor)

  self._queue = Queue.new()

  _listenForHeartbeats(self)

  return self
end

function TaskProcessor:queueTask(task)
  self.queue:push(task)
end

function _listenForHeartbeats(self)
  RunService.Heartbeat:Connect(function
      if (self.queue:isEmpty()) then
        return
      end

      _processTask(self, self.queue:pop())
    end)
end

function _processTask(self, task)
  -- some processing stuff
end

return {
  new = new
}
1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago