Class: PauseAction

Inherits:
Action show all
Defined in:
lib/ruby-macrodroid/actions.rb

Instance Attribute Summary

Attributes inherited from Action

#constraints

Attributes inherited from MacroObject

#options, #siguid, #type

Instance Method Summary collapse

Methods inherited from Action

#invoke

Methods included from ObjectX

#action_to_object, #object_create, #varify

Methods inherited from MacroObject

#to_h

Constructor Details

#initialize(h = {}) ⇒ PauseAction

Returns a new instance of PauseAction.



1756
1757
1758
1759
1760
1761
1762
1763
# File 'lib/ruby-macrodroid/actions.rb', line 1756

def initialize(h={})
  
  options = {
    delay_in_milli_seconds: 0, delay_in_seconds: 1, use_alarm: false
  }
  super(h)
  
end

Instance Method Details

#to_s(colour: false, indent: 0) ⇒ Object



1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
# File 'lib/ruby-macrodroid/actions.rb', line 1765

def to_s(colour: false, indent: 0)
  
  su = Subunit.new(units={minutes:60, hours:60}, 
                   seconds: @h[:delay_in_seconds])

  ms = @h[:delay_in_milli_seconds]
  
  duration = if su.to_h.has_key?(:minutes) or (ms < 1) then
    su.strfunit("%X")
  else
    "%s %s ms" % [su.strfunit("%X"), ms]
  end
  
  "Wait " + duration
end