Git Product home page Git Product logo

callback's People

Contributors

gitmodu avatar per1234 avatar tomstewart89 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

callback's Issues

Wrong maximum number of slots which can be attached!

in method Signal::attach

if (_nextSlot < (Slots - 1)) {
        // Connect it up and away we go
        _connections[_nextSlot++] = slot.clone();
}

I think it must be

if (_nextSlot < Slots) {
        // Connect it up and away we go
        _connections[_nextSlot++] = slot.clone();
}

It maximizes the number of slots that Slots set

Licencing

I'd like to make use of this library in some Arduino software that will be shipped as part of an ESP8266 based product, but you've not included a LICENCE.md file. Do you plan to add a licence?

Not updated on Arduino Library Manager

Arduino Library Manager downloads versión 1.0 which uses Connect and Emit instead of Attach and Fire.

Should I use version 1.0 from the Library Manager or the GitHub's 1.1 version?

template specialization with no parameters in callback

It would be great to have a specialization of the Signal template when ParameterType is void. Work-arounds such as using a dummy integer would force legacy slots to change their interfaces. I'm okay with limiting the slot parameter count to one. But I would also like to propose supporting a slot with no parameters.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.