| FCGI-Client documentation | view source | Contained in the FCGI-Client distribution. |
FCGI::Client::Record - record object for FCGI
my $record = FCGI::Client::Record->new(header => $header, content => $content);
say $record->type;
This module is record class for FCGI::Client.
'header' attribute is instance of FCGI::Client::RecordHeader.
'content' attribute is string of record content.
shortcut of $self->header->any_method()
| FCGI-Client documentation | view source | Contained in the FCGI-Client distribution. |