We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi!
Using this code:
var onMessage = (Func<object, Task<object>>)(async (message) => { Console.WriteLine(message); return "Received string of length " + ((string)message).Length; }); var func = EdgeJs.Edge.Func(@" var indexer = require('./TuxedoSearch/indices/indexer'); var indexDefinitions = require('./TuxedoSearch/indices/definition').definitions; return function(data, callback) { process.nextTick(function() { callback(null, indexDefinitions); }); } "); var result = func(new {data = elasticSearchUrlTextBox.Text, onMessage = onMessage} ).Result;
It hangs... as if process.nextTick was not supported..
The text was updated successfully, but these errors were encountered:
This is related to #325. I'm working on a fix; you can follow along in that issue for details.
Sorry, something went wrong.
A fix was just released which should address this. See if the latest release (edge@7.10.0) fixes the problem and report back!
edge@7.10.0
No branches or pull requests
Hi!
Using this code:
It hangs... as if process.nextTick was not supported..
The text was updated successfully, but these errors were encountered: