-
```js
var queue = new metasync.ConcurrentQueue(concurrency, timeout);
queue.add({item});
queue.on('empty', fn);
queue.on('process', fn(item, callback));
queue.pause();
queue.resume();
queue.sto…
-
I think we have multiple problems:
https://github.com/metarhia/JSTP/blob/master/lib/server.js#L71
https://github.com/metarhia/JSTP/blob/master/lib/server.js#L90
https://github.com/metarhia/JSTP/blo…
-
Steps to reproduce:
* Enable static files introspection
* Open a directory with large number of files (in our case, 1418) in browser
aqrln updated
7 years ago
-
Unfortunately we cannot do it right now because of existing code, but as soon as the oldest supported version of Impress is 0.3, the following changes must be applied to this package:
- Rewrite the c…
aqrln updated
7 years ago
-
Use case:
```js
metasync.reduce(['Beijing', 'Roma', 'Kiev'], (prev, cur, callback) => {
getCityPopulation(cur, (count) => {
callback(prev + count);
});
}, (err, count) => {
console.lo…
-
Now we have Impress `0.3.30` and `0.2.9` with fixed tests, no more re connecting to cloud controller on shutdown. Multiple fixes in Impress core, refactoring and fixed fork/kill functionality. This ma…
-
```js
Cursor.next(function(record) { ... });
```
-
'\init\state.js' in `example` and any access to `application.state.data` gives following:
```
TypeError: Cannot read property 'event' of undefined
EventEmitter.impress.cloud.state (impress.cloud.js…
-
Kubuntu 14.04
npm 3.10.9
node v6.9.2
Npm log is attached
[npm-debug.txt](https://github.com/metarhia/JSTP/files/644645/npm-debug.txt)
-
```js
Cursor.jsql:Array of Operation { op: name, fields... }
Cursor.copy():Cursor
Cursor.clone():Cursor
Cursor.enroll(jsql):Cursor
```