0.1.24 • Published 9 years ago

zmq-soa v0.1.24

Weekly downloads
258
License
-
Repository
-
Last release
9 years ago

zmq-soa

implement distributed zmq SOA broker , worker , requester

Usage

npm install zmq-soa

Broker

Start broker

Broker is used for setting

    soa = require('zmq-soa');
    var port = 8888
    var broker = new soa.Broker('tcp://*:'+port, {});

Detect client connect event

broker.on('connect', function(client) {
    console.log('connect')
})
    

Detect client disconnect event

broker.on('disconnect', function(client) {
    console.log('connect')
})
    

Worker and client

Start to connect

var port = 8888

//worker connect
worker = new soa.Client('localhost', port, 
    {
        service: 'serviceName'
    }
    , 
    //worker response function
    function(data, cb) {
        console.log('get test message'+data);
        return cb(data);
    }
);
//client connect
client = new soa.Client('localhost', 8888);

Connected Event

worker.on('connect', function() {
    console.log('woker connected');
});

##Authenticate

worker auth

//trigger after encryption handshake
worker.on('ready', function() { 
    worker.Authenticate('123');
});

//auth to broker
worker.on('authenticate', function(result) {
    if(result)
        console.log('auth success')
    else
        console.log('auth failed')
});

broker auth event

####broker.on('auth', function(envelope, data, cb))

broker.on('auth', function(envelope, data, cb) {
    // check user information
    if (data.auth && data.auth === 'password') {
        if (cb) {
            
            if (data.service) {
                //auth success and set client as a worker
                return cb(true, envelope, data.service, data);
            } else {
                //auth success and set client as a worker
                return cb(true, envelope, data);
            }
        } 
    } else {
        //auth failed
        return cb(false, envelope);
    }
});

Client

client = new soa.Client('localhost', port);
client.send('test2', new Buffer('message'), function(err, data) {})

Worker send for other service

worker = new soa.Client('localhost', port, 
    {
        service: 'serviceName'
    }
    , 
    //worker response function
    function(data, cb) {
        console.log('get test message'+data);
        worker.send('service2',function(data){
            return cb(data);
        })
    }
);

Broker service

Broker service provide client and worker to get message from broker directly. ####broker.on('service',function(msg,client-envelop,callback)

broker.on('service', function(msg, envelope, cb) {
    console.log(msg.data.toString())
    cb(
});

####client.sendBService(data,callback,timeout)

client.sendBService(new Buffer("{'data':'123'}"));
client.sendBService(new Buffer("{'data':'123'}")
    ,
    //service return data
    function(error,data){
        console.log(data.toString())
    }
    //10 second
    ,10
);

License

MIT

0.1.24

9 years ago

0.1.23

9 years ago

0.1.22

9 years ago

0.1.21

9 years ago

0.1.20

9 years ago

0.1.19

10 years ago

0.1.18

10 years ago

0.1.17

10 years ago

0.1.16

10 years ago

0.1.15

10 years ago

0.1.14

10 years ago

0.1.13

10 years ago

0.1.12

10 years ago

0.1.11

10 years ago

0.1.10

10 years ago

0.1.9

10 years ago

0.1.8

10 years ago

0.1.7

10 years ago

0.1.6

10 years ago

0.1.5

10 years ago

0.1.4

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago

0.0.40

10 years ago

0.0.39

10 years ago

0.0.38

10 years ago

0.0.37

10 years ago

0.0.36

10 years ago

0.0.35

10 years ago

0.0.34

10 years ago

0.0.33

10 years ago

0.0.32

10 years ago

0.0.31

10 years ago

0.0.30

10 years ago

0.0.29

10 years ago

0.0.28

10 years ago

0.0.27

11 years ago

0.0.26

11 years ago

0.0.25

11 years ago

0.0.24

11 years ago

0.0.23

11 years ago

0.0.22

11 years ago

0.0.21

11 years ago

0.0.20

11 years ago

0.0.19

11 years ago

0.0.18

11 years ago

0.0.17

11 years ago

0.0.16

11 years ago

0.0.15

11 years ago

0.0.13

11 years ago

0.0.12

11 years ago

0.0.11

11 years ago

0.0.10

11 years ago

0.0.9

11 years ago

0.0.8

11 years ago

0.0.7

11 years ago

0.0.6

11 years ago

0.0.5

11 years ago

0.0.4

11 years ago

0.0.3

11 years ago

0.0.2

11 years ago

0.0.1

11 years ago