Class: Quark::MdkRuntime::Files::FileDeleted

Inherits:
DatawireQuarkCore::QuarkObject show all
Extended by:
DatawireQuarkCore::Static
Defined in:
lib/mdk_runtime/files.rb

Overview

Message from FileActor indicating a file was deleted.

Constant Summary

Constants included from DatawireQuarkCore::Static

DatawireQuarkCore::Static::Unassigned

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from DatawireQuarkCore::Static

_lazy_statics, static, unlazy_statics

Methods inherited from DatawireQuarkCore::QuarkObject

#to_s

Constructor Details

#initialize(path) ⇒ FileDeleted

Returns a new instance of FileDeleted.



156
157
158
159
160
161
162
# File 'lib/mdk_runtime/files.rb', line 156

def initialize(path)
    
    self.__init_fields__
    (self).path = path

    nil
end

Instance Attribute Details

#pathObject

Returns the value of attribute path.



149
150
151
# File 'lib/mdk_runtime/files.rb', line 149

def path
  @path
end

Instance Method Details

#__init_fields__Object



193
194
195
196
197
198
# File 'lib/mdk_runtime/files.rb', line 193

def __init_fields__()
    
    self.path = nil

    nil
end

#_getClassObject



167
168
169
170
171
172
# File 'lib/mdk_runtime/files.rb', line 167

def _getClass()
    
    return "mdk_runtime.files.FileDeleted"

    nil
end

#_getField(name) ⇒ Object



174
175
176
177
178
179
180
181
182
# File 'lib/mdk_runtime/files.rb', line 174

def _getField(name)
    
    if ((name) == ("path"))
        return (self).path
    end
    return nil

    nil
end

#_setField(name, value) ⇒ Object



184
185
186
187
188
189
190
191
# File 'lib/mdk_runtime/files.rb', line 184

def _setField(name, value)
    
    if ((name) == ("path"))
        (self).path = ::DatawireQuarkCore.cast(value) { ::String }
    end

    nil
end