Apache2::REST::Writer


Apache2-REST documentation Contained in the Apache2-REST distribution.

Index


Code Index:

new

You can override this if you like but remember it has to build an object without arguments.

mimeType

Returns the mime type this writer will output.

It is called like this by the framework:

   $this->mimeType($resp) ;

So you can adapt the mime type according to the response to be given.

asBytes

Returns the bytes the framework has to write back to client.

It is called by the framework like this ($resp is a Apache2::REST::Response):

    $this->asBytes($resp) ;


Apache2-REST documentation Contained in the Apache2-REST distribution.
package Apache2::REST::Writer;
use strict;
use warnings;

sub new{
    my ( $class ) = @_;
    return bless {} , $class;
}


sub mimeType{
    my ( $self , $resp )=@_;
    return '' ;
}

sub asBytes{
    my ($self,  $resp ) = @_ ;
    return '' ;
}


1;