Reference Source

js/nodes/node_feature.js

  1.  
  2.  
  3. // let context = 'server/nodes/node_feature'
  4.  
  5.  
  6.  
  7. /**
  8. * @file Node feature: append a feature to a Node instance.
  9. * @author Luc BORIES
  10. * @license Apache-2.0
  11. */
  12. export default class NodeFeature
  13. {
  14. /**
  15. * Create a Nodefeature instance.
  16. * @abstract
  17. *
  18. * @param {Node} arg_node - node instance.
  19. * @param {string} arg_name - feature name.
  20. *
  21. * @returns {nothing}
  22. */
  23. constructor(arg_node, arg_name)
  24. {
  25. /**
  26. * Class type flag.
  27. * @type {boolean}
  28. */
  29. this.is_node_feature = true
  30. /**
  31. * Node instance.
  32. * @type {Node}
  33. */
  34. this.node = arg_node
  35. /**
  36. * Feature name.
  37. * @type {string}
  38. */
  39. this.name = arg_name
  40. /**
  41. * Is ready flag.
  42. * @type {boolean}
  43. */
  44. this.is_ready = false
  45. }
  46.  
  47.  
  48.  
  49. /**
  50. * Get feature name.
  51. *
  52. * @returns {string} - feature name
  53. */
  54. get_name()
  55. {
  56. return this.name
  57. }
  58.  
  59. /**
  60. * Load Node settings.
  61. * @abstract
  62. *
  63. * @returns {nothing}
  64. */
  65. load()
  66. {
  67. this.node.enter_group(':NodeFeature.load()')
  68. this.node.leave_group(':NodeFeature.load()')
  69. }
  70. /**
  71. * Starts node feature.
  72. * @abstract
  73. *
  74. * @returns {nothing}
  75. */
  76. start()
  77. {
  78. this.node.enter_group(':NodeFeature.start')
  79.  
  80. this.node.leave_group(':NodeFeature.start')
  81. }
  82. /**
  83. * Stops node feature.
  84. * @abstract
  85. *
  86. * @returns {nothing}
  87. */
  88. stop()
  89. {
  90. this.node.enter_group(':NodeFeature.stop')
  91. this.node.leave_group(':NodeFeature.stop')
  92. }
  93. }