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
vm.Option directly set Intsance fields, which is bad, it should use a delegate config structure.
With the recent addition of Ticker where using Option would be safe, we need cater for most use cases before switching to a cfg struct.
For example, a ticker function might need to remove itself, or change the tick interval.
Also need to provide more control over the instance to Go code running it.
The text was updated successfully, but these errors were encountered:
Minor fix in ticker + update Option docs
e81c572
See #7.
No branches or pull requests
vm.Option directly set Intsance fields, which is bad, it should use a delegate config structure.
With the recent addition of Ticker where using Option would be safe, we need cater for most use cases
before switching to a cfg struct.
For example, a ticker function might need to remove itself, or change the tick interval.
Also need to provide more control over the instance to Go code running it.
The text was updated successfully, but these errors were encountered: