class MIDI::Stop
Public Class Methods
new(delta_time = 0)
click to toggle source
Calls superclass method
MIDI::Realtime::new
# File lib/midilib/event.rb, line 391 def initialize(delta_time = 0) super(STOP, delta_time) end
Public Instance Methods
to_s()
click to toggle source
Calls superclass method
MIDI::Realtime#to_s
# File lib/midilib/event.rb, line 395 def to_s super << 'stop' end