Class: Wiretap::AudioFrames
- Inherits:
-
NodeFrames
- Object
- NodeFrames
- Wiretap::AudioFrames
- Defined in:
- lib/wiretap.rb,
ext/nodeframes.cpp
Instance Attribute Summary
Attributes inherited from NodeFrames
Instance Method Summary collapse
-
#dump(*args) ⇒ Object
Always returns false for this object.
-
#dump_all(*args) ⇒ Object
Always returns false for this object.
-
#read(*args) ⇒ Object
Always returns false for this object.
- #real_dump ⇒ Object
Methods inherited from NodeFrames
#[], #[]=, #count, #count=, #each, #inspect, #length=, #path_at, #write_from_file
Instance Method Details
#dump(*args) ⇒ Object
Always returns false for this object
15 16 17 18 |
# File 'ext/wiretap.cpp', line 15 def dump(index, filename) FileUtils.rm_r(filename) rescue nil real_dump(index, filename) end |
#dump_all(*args) ⇒ Object
Always returns false for this object
15 16 17 |
# File 'ext/wiretap.cpp', line 15
VALUE wiretap_false(int argc, VALUE* argv, VALUE self) {
return Qfalse;
}
|
#read(*args) ⇒ Object
Always returns false for this object
15 16 17 |
# File 'ext/wiretap.cpp', line 15
VALUE wiretap_false(int argc, VALUE* argv, VALUE self) {
return Qfalse;
}
|
#real_dump ⇒ Object
266 |
# File 'lib/wiretap.rb', line 266 alias :real_dump :dump |