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
So that we can specify how the item should be persisted in items builder too.
items.build do number_item Number1 do persist :on_change # add to the default persistence persist %i[on_change on_update], service: :influxdb # add to influxdb persistence end number_item Number2, persist: :on_update number_item Number3 do persist %i[on_update on_change], every: 5.minutes, service: influxdb, filter: ->(value) { value.between?(5, 10) } end number_item Number4, persist: { cron: "* * * * * *" } end
The text was updated successfully, but these errors were encountered:
No branches or pull requests
So that we can specify how the item should be persisted in items builder too.
The text was updated successfully, but these errors were encountered: