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
It is not clear that the number in the OutSim and OutGauge constructor is the timeout.
const outSim = new OutSim(10000);
The idea is to remove that parameter from the class constructor and define it as an optional parameter of connect().
connect()
const outSim = new OutSim(); outSim.connect({ Host: '127.0.0.1', Port: 29999, Timeout: 10000, });
The text was updated successfully, but these errors were encountered:
mkapal
No branches or pull requests
It is not clear that the number in the OutSim and OutGauge constructor is the timeout.
The idea is to remove that parameter from the class constructor and define it as an optional parameter of
connect()
.The text was updated successfully, but these errors were encountered: