Source: lib/guard_condition.js

  1. // Licensed under the Apache License, Version 2.0 (the "License");
  2. // you may not use this file except in compliance with the License.
  3. // You may obtain a copy of the License at
  4. //
  5. // http://www.apache.org/licenses/LICENSE-2.0
  6. //
  7. // Unless required by applicable law or agreed to in writing, software
  8. // distributed under the License is distributed on an "AS IS" BASIS,
  9. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. // See the License for the specific language governing permissions and
  11. // limitations under the License.
  12. 'use strict';
  13. const rclnodejs = require('bindings')('rclnodejs');
  14. const Entity = require('./entity.js');
  15. const Context = require('./context.js');
  16. /**
  17. * @class - Class representing a guard condition in ROS
  18. * @hideconstructor
  19. */
  20. class GuardCondition extends Entity {
  21. constructor(handle, callback) {
  22. super(handle, null, null);
  23. this._callback = callback;
  24. }
  25. get callback() {
  26. return this._callback;
  27. }
  28. static createGuardCondition(callback, context = Context.defaultContext()) {
  29. let handle = rclnodejs.createGuardCondition(context.handle);
  30. return new GuardCondition(handle, callback);
  31. }
  32. /**
  33. * Triggers the guard condition.
  34. * @returns {undefined}
  35. */
  36. trigger() {
  37. rclnodejs.triggerGuardCondition(this.handle);
  38. }
  39. }
  40. module.exports = GuardCondition;