NAME

Continuity - Simplify web apps through abstraction (such as continuations)

SYNOPSIS

use Continuity::Server::Simple;
$server = new Continuity::Server::Simple;
$server->loop();

sub main {
  # must do a substr to chop the leading '/'
  $name = substr($server->get_request->url->path,1) || 'World';
  print "Hello, $name!";
  $name = substr($server->get_request->url->path,1) || 'World';
  print "Hello to you too, $name!";
}

DESCRIPTION

This module is just for documentation.

Continuity seeks to be a library (not a framework) to simplify web applications.At the core is a continuation server, which inverts control back to the programmer. This is ALPHA software, and feedback/code is welcomed.

SEE ALSO

Website/Wiki: http://continuity.tlt42.org/

AUTHOR

Brock Wilcox <awwaiid@thelackthereof.org>
http://thelackthereof.org/

COPYRIGHT

Copyright (c) 2004-2006 Brock Wilcox <awwaiid@thelackthereof.org>. All rights
reserved.  This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.