Giter Site home page Giter Site logo

functionstack's Introduction

FunctionStack

A very simple class that allows stacking functions and calling them step by step or priodiacly. This class is different from Chain in few ways:

  1. It is ment to be used as a periodical caller - the play method.
  2. It is posible to pass arguments to the functions in the stack.
  3. It is ment to be used as a standalone, not to be implemented by other classes. Class method names are trivial and probably will be needed by implementors (push, play, clear, reset, stop, pause).

Screenshot

How to use

This is quite stright farward:

#JS
var stack = new FunctionStack(
	function(){console.log('a');},
	function(){console.log('b');},
	function(){console.log('c');},
	function(){console.log('d');},
	function(){console.log('e');}
);

stack.step(); //will call log 'a'

stack.play(); //will log 'b' 'c' 'd' 'e' periodicaly (defualt to 1000 miliseconds)

Methods

  1. push (function[,function[,...]]): Recives an unlimited list of functions. Adds them to the stack.
  2. step : Will call the next function in the stack. If any paramaters were sent, will send them to the function.
  3. play (int duration, array args) : Will step through the stack priodicaly. If args is supplied, will pass them to the functions.
  4. pause : Will pause the periodical call.
  5. stop : Will stop the periodcal call, reseting the counter.
  6. reset : will reset the stack index.
  7. clear : will clear the stack.

functionstack's People

Contributors

arieh avatar

Stargazers

 avatar

Watchers

 avatar  avatar

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.