2.0.0 • Published 4 years ago

lisa.promise v2.0.0

Weekly downloads
5
License
MIT
Repository
github
Last release
4 years ago

LiSA.Promise

mad promsie wrapper

just try it

install

npm install --save lisa.promise

easy use

const LiSAP = require('lisa.promise')(2)
//your action
var yourAction = name =>{
    console.log("hello  i am " + name )
    return name
    //promise is supported also
    return new Promise((r,j)=>{
        setTimeout(()=>{
            console.log('i am ' + name)
            r(name)
        },100)
    })
}
// here to set serial or parallel or mutli-line
LiSAP.queue(2)
LiSAP.parallel()
LiSAP.serial(2)

// your params
var names = ["LiSA" , null,"aoer" , "luna", "apporoad","rue","aphyse"]

// assign task
LiSAP.assignBatch(yourAction,names)

// action
LiSAP.action('default picar').then(names =>{
    console.log(names)
})

/* result:
hello  i am LiSA
hello  i am default picar
hello  i am aoer
hello  i am luna
hello  i am apporoad
hello  i am rue
hello  i am aphyse
[ 'LiSA',
  'default picar',
  'aoer',
  'luna',
  'apporoad',
  'rue',
  'aphyse' ]

*/

chain invoke

LiSAP
    .assignBatch(name=>{ console.log("hello  i am " + name ) ; return name},['LiSA','aoer'])
    .assignBatch(name=>{ console.log("hi i am " + name ) ; return name},['luna','apporoad'])
    .assignBatch(name=>{ return new Promise(r=> {console.log("hi i am promise " + name ) ; r(name) })},['luna','apporoad'])
    .assign(p=>{ console.log(' my name is ' + p) ; return p})
    .action('xxxxxx')
    .then(mina => {
        console.log(mina)
    })
    .catch(err =>{
        console.log(err)
    })
/*

hello  i am LiSA
hello  i am aoer
hi i am luna
hi i am apporoad
hi i am promise luna
hi i am promise apporoad
 my name is xxxxxx
[ 'LiSA', 'aoer', 'luna', 'apporoad', 'luna', 'apporoad', 'xxxxxx' ]
*/

autoAction

var LiSA = require('lisa.promise')(2)

LiSA.queue(2)

LiSA.autoAction("hello good day",{
    then : (mina) => {
        console.log( "mina are : " + mina) 
        return new Promise((r,j)=>{ setTimeout(()=>{ console.log("stoped then"); r()},2000) })}
})

LiSA.assignBatch(
    name=>{ console.log("hello  i am " + name ) ;
     return name
     }, ['1','2'])

var index = 3
setInterval(()=>{
    LiSA.assign(name=>{ 
        console.log("hello  i am " + name ) ; 
        return  new Promise((r,j)=>{  
            setTimeout(()=>{
                r(name)
            },Math.random()*1000)
        })
    },index++)
},100)

more demo in testMad.js

2.0.0

4 years ago

1.1.2

4 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago