-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
Deprecate SuperSpreader::StopSignal and related methods #69
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -3,15 +3,21 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||
require "redis" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
module SuperSpreader | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
# @deprecated Please use TrackBallast::StopSignal instead | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
module StopSignal | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
# @deprecated Please use {TrackBallast::StopSignal.stop!} instead | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
def stop! | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
warn "DEPRECATION WARNING: the class SuperSpreader::StopSignal is deprecated and will be removed in v1.0. " \ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
"Use TrackBallast::StopSignal instead." | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
redis.set(stop_key, true) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
# @deprecated Please use {TrackBallast::StopSignal.go!} instead | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
def go! | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
redis.del(stop_key) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
# @deprecated Please use {TrackBallast::StopSignal.stopped?} instead | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+8
to
+20
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. When previewing the documentation using
It makes sense that it can't resolve the links because we are moving
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
def stopped? | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
redis.exists(stop_key).positive? | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's also the built-in
deprecate
method, which may provide some advantages. I'm unsure, to be honest. Do you have an opinion on this option? (I could go either way.)