Class: PuppetLanguageServer::GlobalQueues::ValidationQueueJob
- Inherits:
-
SingleInstanceQueueJob
- Object
- SingleInstanceQueueJob
- PuppetLanguageServer::GlobalQueues::ValidationQueueJob
- Defined in:
- lib/puppet-languageserver/global_queues/validation_queue.rb
Instance Attribute Summary collapse
-
#connection_id ⇒ Object
Returns the value of attribute connection_id.
-
#doc_version ⇒ Object
Returns the value of attribute doc_version.
-
#file_uri ⇒ Object
Returns the value of attribute file_uri.
-
#options ⇒ Object
Returns the value of attribute options.
Attributes inherited from SingleInstanceQueueJob
Instance Method Summary collapse
-
#initialize(file_uri, doc_version, connection_id, options = {}) ⇒ ValidationQueueJob
constructor
A new instance of ValidationQueueJob.
Constructor Details
#initialize(file_uri, doc_version, connection_id, options = {}) ⇒ ValidationQueueJob
Returns a new instance of ValidationQueueJob.
11 12 13 14 15 16 17 |
# File 'lib/puppet-languageserver/global_queues/validation_queue.rb', line 11 def initialize(file_uri, doc_version, connection_id, = {}) super(file_uri) @file_uri = file_uri @doc_version = doc_version @connection_id = connection_id = end |
Instance Attribute Details
#connection_id ⇒ Object
Returns the value of attribute connection_id.
9 10 11 |
# File 'lib/puppet-languageserver/global_queues/validation_queue.rb', line 9 def connection_id @connection_id end |
#doc_version ⇒ Object
Returns the value of attribute doc_version.
9 10 11 |
# File 'lib/puppet-languageserver/global_queues/validation_queue.rb', line 9 def doc_version @doc_version end |
#file_uri ⇒ Object
Returns the value of attribute file_uri.
9 10 11 |
# File 'lib/puppet-languageserver/global_queues/validation_queue.rb', line 9 def file_uri @file_uri end |
#options ⇒ Object
Returns the value of attribute options.
9 10 11 |
# File 'lib/puppet-languageserver/global_queues/validation_queue.rb', line 9 def end |