Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

mojo::server(3pm) [debian man page]

Mojo::Server(3pm)					User Contributed Perl Documentation					 Mojo::Server(3pm)

NAME
Mojo::Server - HTTP server base class SYNOPSIS
use Mojo::Base 'Mojo::Server'; sub run { my $self = shift; # Get a transaction my $tx = $self->build_tx; # Emit "request" event $self->emit(request => $tx); } DESCRIPTION
Mojo::Server is an abstract HTTP server base class. EVENTS
Mojo::Server can emit the following events. "request" $server->on(request => sub { my ($server, $tx) = @_; ... }); Emitted when a request is ready and needs to be handled. $server->unsubscribe('request'); $server->on(request => sub { my ($server, $tx) = @_; $tx->res->code(200); $tx->res->headers->content_type('text/plain'); $tx->res->body('Hello World!'); $tx->resume; }); ATTRIBUTES
Mojo::Server implements the following attributes. "app" my $app = $server->app; $server = $server->app(MojoSubclass->new); Application this server handles, defaults to a Mojo::HelloWorld object. "app_class" my $app_class = $server->app_class; $server = $server->app_class('MojoSubclass'); Class of the application this server handles, defaults to the value of the "MOJO_APP" environment variable or Mojo::HelloWorld. METHODS
Mojo::Server inherits all methods from Mojo::EventEmitter and implements the following new ones. "new" my $server = Mojo::Server->new; Construct a new Mojo::Server object and subscribe to "request" event with default request handling. "build_tx" my $tx = $server->build_tx; Let application build a transaction. "load_app" my $app = $server->load_app('./myapp.pl'); Load application from script. say Mojo::Server->new->load_app('./myapp.pl')->home; "run" $server->run; Run server. Meant to be overloaded in a subclass. SEE ALSO
Mojolicious, Mojolicious::Guides, <http://mojolicio.us>. perl v5.14.2 2012-09-05 Mojo::Server(3pm)

Check Out this Related Man Page

Mojo::Server::FastCGI(3pm)				User Contributed Perl Documentation				Mojo::Server::FastCGI(3pm)

NAME
Mojo::Server::FastCGI - FastCGI Server SYNOPSIS
use Mojo::Server::FastCGI; my $fcgi = Mojo::Server::FastCGI->new; $fcgi->on_request(sub { my ($self, $tx) = @_; # Request my $method = $tx->req->method; my $path = $tx->req->url->path; # Response $tx->res->code(200); $tx->res->headers->content_type('text/plain'); $tx->res->body("$method request for $path!"); # Resume transaction $tx->resume; }); $fcgi->run; DESCRIPTION
Mojo::Server::FastCGI is a portable pure-Perl FastCGI implementation as described in the "FastCGI Specification". See Mojolicious::Guides::Cookbook for deployment recipes. ATTRIBUTES
Mojo::Server::FastCGI inherits all attributes from Mojo::Server. METHODS
Mojo::Server::FastCGI inherits all methods from Mojo::Server and implements the following new ones. "accept_connection" my $c = $fcgi->accept_connection; Accept FastCGI connection. "read_record" my ($type, $id, $body) = $fcgi->read_record($c); Parse FastCGI record. "read_request" my $tx = $fcgi->read_request($c); Parse FastCGI request. "role_name" my $name = $fcgi->role_name(3); FastCGI role name. "role_number" my $number = $fcgi->role_number('FILTER'); FastCGI role number. "run" $fcgi->run; Start FastCGI. "type_name" my $name = $fcgi->type_name(5); FastCGI type name. "type_number" my $number = $fcgi->type_number('STDIN'); FastCGI type number. "write_records" $fcgi->write_record($c, 'STDOUT', $id, 'HTTP/1.1 200 OK'); Write FastCGI record. "write_response" $fcgi->write_response($tx); Write FastCGI response. DEBUGGING
You can set the "MOJO_FASTCGI_DEBUG" environment variable to get some advanced diagnostics information sent to the Mojo logger as "debug" messages. MOJO_FASTCGI_DEBUG=1 SEE ALSO
Mojolicious, Mojolicious::Guides, <http://mojolicio.us>. perl v5.12.4 2011-11-02 Mojo::Server::FastCGI(3pm)
Man Page