Antti Vähäkotamäki
Antti Vähäkotamäki
I am trying to implement a graceful shutdown for my workers, meaning that when I receive a signal (or otherwise decide so), all of my workers should continue doing their...
I am doing workers that do one task and then exit. In effect I want to do this: ``` client.registerWorker( 'success-function', {}, function( task ) { task.end("success!"); client.disconnect(); } );...
Currently I get this: python -c 'import js2py; js2py.eval_js("setTimeout(function() {}, 1 );")' [....] js2py.base.PyJsException: ReferenceError: setTimeout is not defined .. now how hard can implementing the event loop be? ;)...
An example is needed in the readme for creating and using a bin.
Provide an API to register a webhook which will be called when something is pushed into a list and indicates the potential consumers that there are things to pop in...
I would love to be able to define the name of my route or bin so that it would be easier to reason about them when coding against bambleweeny. Something...
I was expecting to be able to use node-libcurl as a binary from command line with npx (at least for basic cases) after installing the package. Is there a reason...