class RubyLsp::Job
A request that will sit in the queue until it’s executed
def cancel
def cancel @cancelled = true end
def initialize(request:, cancelled:)
def initialize(request:, cancelled:) @request = request @cancelled = cancelled end
A request that will sit in the queue until it’s executed
def cancel @cancelled = true end
def initialize(request:, cancelled:) @request = request @cancelled = cancelled end