class FCGI::AbortRequestRecord

Public Class Methods

new(id) click to toggle source
Calls superclass method FCGI::Record.new
# File lib/fcgi.rb, line 382
def initialize(id)
  super FCGI_ABORT_REQUEST, id
end
parse(id, body) click to toggle source
# File lib/fcgi.rb, line 378
def AbortRequestRecord.parse(id, body)
  new(id)
end