forked from maty21/extraRedis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
76 lines (59 loc) · 2.02 KB
/
test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
'use strict'
let extraRedis = require('./lib/extraRedis');
// creating new object
var ERedis = new extraRedis({port: 6379, host: "127.0.0.1"});
//creating simple pub sub with multiple subscribers
ERedis.on('foo', (message)=> {
console.log('foo -> ' + message);
}, guid=> {
console.log('guidfoo-> ' + guid)
})
ERedis.on('foo', (message)=> {
console.log('foo2 -> ' + message);
}, guid=> {
console.log('guidfoo2-> ' + guid)
})
ERedis.emit('foo', 'bar');
//creating request reply sample so only the sending emtier will get directly the message for his answer
ERedis.requestReply.on('reqReplyFoo', (message, func)=> {
console.log('reqReplyFoo=> ' + message);
func('reqReplyOnBar');
})
ERedis.requestReply.emit('reqReplyFoo', 'reqReplyBar').then((message)=> {
console.log('reqReplyOnFoo-> ' + message);
}).catch((e)=> {
console.log('ERROR!!!! ' + e)
});
//creating producer consumers sample
ERedis.producerConsumer.createJob('prodConsTest');
ERedis.producerConsumer.consume('prodConsTest', (message, finishFunction)=> {
setTimeout(()=> {
console.log(`message consumed -> ${message}`);
finishFunction();
}, 5000)
});
ERedis.producerConsumer.consume('prodConsTest', (message, finishFunction)=> {
setTimeout(()=> {
console.log(`message consumed -> ${message}`);
finishFunction();
}, 5000)
});
setTimeout(()=> {
ERedis.producerConsumer.produce('produce job 1');
ERedis.producerConsumer.produce('produce job 2');
ERedis.producerConsumer.produce('produce job 3');
console.log("sending job for producing")
}, 5000)
//creating queryable instance sample
ERedis.queryable.createQueryableInstance('foo')
.subscribe(message => {
console.log(`queryable Instance -> ${message}`)
})
//creating queryable instance sample with filter
ERedis.queryable.createQueryableInstance('foo')
.filter((message)=> {
return message.valueOf() == 'bar'
})
.subscribe(message => {
console.log(`queryable Instance with filter -> ${message}`)
})