class FCGI::GenericDataRecord
Attributes
Public Class Methods
Source
# File lib/fcgi.rb, line 526 def initialize(type, id, flagment) super type, id @flagment = flagment end
Calls superclass method
FCGI::Record::new
Public Instance Methods
Private Instance Methods
Source
# File lib/fcgi.rb, line 539 def make_body if @flagment.respond_to? 'force_encoding' then return @flagment.dup.force_encoding('BINARY') else return @flagment end end