Class: DBus::Systemd::Job
- Inherits:
-
Object
- Object
- DBus::Systemd::Job
- Includes:
- Mixin::MethodMissing, Mixin::Properties
- Defined in:
- lib/dbus/systemd/job.rb
Constant Summary collapse
- INTERFACE =
systemd job object dbus interface
'org.freedesktop.systemd1.Job'.freeze
Instance Attribute Summary
Attributes included from Mixin::MethodMissing
Instance Method Summary collapse
-
#initialize(id, manager = Manager.new) ⇒ Job
constructor
Creates a job object for interfacing with a systemd job.
Methods included from Mixin::Properties
Methods included from Mixin::MethodMissing
#method_missing, #respond_to_missing?
Constructor Details
#initialize(id, manager = Manager.new) ⇒ Job
Creates a job object for interfacing with a systemd job
38 39 40 41 42 43 |
# File 'lib/dbus/systemd/job.rb', line 38 def initialize(id, manager = Manager.new) job_path = manager.GetJob(id).first @object = manager.service.object(job_path) @object.default_iface = INTERFACE @object.introspect end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class DBus::Systemd::Mixin::MethodMissing