Class: Quark::MdkRuntime::Time

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

Constant Summary

Constants included from DatawireQuarkCore::Static

DatawireQuarkCore::Static::Unassigned

Instance Method Summary collapse

Methods included from DatawireQuarkCore::Static

_lazy_statics, static, unlazy_statics

Methods inherited from DatawireQuarkCore::QuarkObject

#to_s

Constructor Details

#initializeTime

Returns a new instance of Time.



256
257
258
259
260
# File 'lib/mdk_runtime.rb', line 256

def initialize()
    self.__init_fields__

    nil
end

Instance Method Details

#__init_fields__Object



275
276
277
278
279
# File 'lib/mdk_runtime.rb', line 275

def __init_fields__()
    

    nil
end

#timeObject

Return the current time in seconds since the Unix epoch.

Raises:

  • (NotImplementedError)


269
270
271
272
273
# File 'lib/mdk_runtime.rb', line 269

def time()
    raise NotImplementedError, '`Time.time` is an abstract method'

    nil
end