NoMachine NX 3.2.0-7 (Server branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News NoMachine NX 3.2.0-7 (Server branch)
# 1  
Old 04-10-2008
NoMachine NX 3.2.0-7 (Server branch)

ImageNoMachine NX is a fast terminal server and desktopvirtualization system based on the X11 protocol.NX is an order of magnitude faster than VNC or X11and can run on bandwidth as narrow as 10 kBit/sec.In addition, NX translates and embeds the MSWindows Terminal Server and VNC protocols intoX/NX, enabling users to compress and accelerateremote Windows and VNC sessions. The NX projectprovides a suite of libraries and X11 proxyingagents implementing efficient compression andoptimized transport of X11, SMB, IPP, HTTP, andarbitrary protocols like audio and video over theInternet.License: GNU General Public License (GPL)Changes:
This version, which collects and consolidates all the changes made on the 3.1.0 branch so far, also ensures that NX Server, during the reboot, is able to perform a proper clean-up of its sessions DB and introduces some cosmetic changes such as a more compliant name for the Statistics DB used by NX Server Manager.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
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)