Class: Quark::MdkDiscovery::Protocol::Expire
- Inherits:
-
Object
- Object
- Quark::MdkDiscovery::Protocol::Expire
- Extended by:
- DatawireQuarkCore::Static
- Defined in:
- lib/mdk_discovery/protocol.rb
Overview
Expire a node.
Constant Summary
Constants included from DatawireQuarkCore::Static
DatawireQuarkCore::Static::Unassigned
Instance Attribute Summary collapse
-
#node ⇒ Object
Returns the value of attribute node.
Instance Method Summary collapse
- #__init_fields__ ⇒ Object
- #_getClass ⇒ Object
- #_getField(name) ⇒ Object
- #_setField(name, value) ⇒ Object
-
#initialize ⇒ Expire
constructor
A new instance of Expire.
Methods included from DatawireQuarkCore::Static
_lazy_statics, static, unlazy_statics
Constructor Details
#initialize ⇒ Expire
Returns a new instance of Expire.
461 462 463 464 465 466 |
# File 'lib/mdk_discovery/protocol.rb', line 461 def initialize() super() nil end |
Instance Attribute Details
#node ⇒ Object
Returns the value of attribute node.
453 454 455 |
# File 'lib/mdk_discovery/protocol.rb', line 453 def node @node end |
Instance Method Details
#__init_fields__ ⇒ Object
503 504 505 506 507 508 509 |
# File 'lib/mdk_discovery/protocol.rb', line 503 def __init_fields__() super self.node = nil nil end |
#_getClass ⇒ Object
471 472 473 474 475 476 |
# File 'lib/mdk_discovery/protocol.rb', line 471 def _getClass() return "mdk_discovery.protocol.Expire" nil end |
#_getField(name) ⇒ Object
478 479 480 481 482 483 484 485 486 487 488 489 |
# File 'lib/mdk_discovery/protocol.rb', line 478 def _getField(name) if ((name) == ("_json_type")) return ::Quark.mdk_discovery.protocol.Expire._json_type end if ((name) == ("node")) return (self).node end return nil nil end |
#_setField(name, value) ⇒ Object
491 492 493 494 495 496 497 498 499 500 501 |
# File 'lib/mdk_discovery/protocol.rb', line 491 def _setField(name, value) if ((name) == ("_json_type")) ::Quark.mdk_discovery.protocol.Expire._json_type = ::DatawireQuarkCore.cast(value) { ::String } end if ((name) == ("node")) (self).node = ::DatawireQuarkCore.cast(value) { ::Quark.mdk_discovery.Node } end nil end |