# File lib/minion/handler.rb, line 16
                def check
                        if should_sub?
                                @sub.call unless @on
                                @on = true
                        else
                                @unsub.call if @on
                                @on = false
                        end
                end