class FSEvent::ProcessDeviceC::StubFramework

Public Class Methods

new(obj) click to toggle source
# File lib/fsevent/processdevicec.rb, line 20
def initialize(obj)
  @obj = obj
end

Public Instance Methods

add_watch(watchee_device_name, status_name) click to toggle source
# File lib/fsevent/processdevicec.rb, line 24
def add_watch(watchee_device_name, status_name)
  @obj.call_parent(:add_watch, watchee_device_name, status_name)
end
modify_status(status_name, value) click to toggle source
# File lib/fsevent/processdevicec.rb, line 28
def modify_status(status_name, value)
  @obj.call_parent(:modify_status, status_name, value)
end