Cxx Eventemitter Save

A minimalist event emitter for C++

Project README

SYNOPSIS

A minimalist event emitter for C++.

DESCRIPTION

This emitter allows you to emit and receive arbitrary/variadic paramaters of equal type. Captures are also allowed.

EXAMPLE

#include "deps/datcxx/cxx-eventemitter/index.h"

int main() {

  EventEmitter ee;

  ee.on("hello", [&](string name, int num) {
    // ...do something with the values.
  });

  ee.emit("hello", "beautiful", 100);
}

USAGE

This module is designed to work with the datcxx build tool. To add this module to your project us the following command...

build add datcxx/cxx-eventemitter

TEST

build run test

API

INSTANCE METHODS

void on(string eventName, lambda callback);

Listen for an event multiple times.

void once(string eventName, lambda callback);

Listen for an event once.

void emit(string eventName [, arg1 [, arg2...]]);

Emit data for a particular event.

void off(string eventName);

Remove listener for a particular event.

void off();

Remove all listeners on the emitter.

int listeners();

Number of listeners an emitter has.

INSTANCE MEMBERS

maxListeners

Number of listeners an event emitter should have before considering that there is a memory leak.

Open Source Agenda is not affiliated with "Cxx Eventemitter" Project. README Source: heapwolf/cxx-eventemitter
Stars
32
Open Issues
0
Last Commit
5 years ago
License
MIT

Open Source Agenda Badge

Open Source Agenda Rating