class FCGI::GenericDataRecord
Attributes
flagment[R]
Public Class Methods
new(type, id, flagment)
click to toggle source
Calls superclass method
FCGI::Record::new
# File lib/fcgi.rb, line 509 def initialize(type, id, flagment) super type, id @flagment = flagment end
parse(id, body)
click to toggle source
# File lib/fcgi.rb, line 505 def self::parse(id, body) new(id, body) end
Public Instance Methods
empty?()
click to toggle source
# File lib/fcgi.rb, line 516 def empty? @flagment.empty? end