NAME
JSP::Runtime - Runs contexts
SYNOPSIS
use JSP;
my $rt = JSP::Runtime->new();
my $ctx = $rt->create_context();
# BTW, if you don't need the runtime, it is always easier to just:
use JSP;
my $ctx = JSP::stock_context();
DESCRIPTION
In SpiderMonkey, a runtime is the data structure that holds javascript variables, objects, script and contexts. Every application needs to have a runtime. This class encapsulates the SpiderMonkey runtime object.
The main use of a runtime in JSP is to create contexts, i.e. JSP::Context instances.
INTERFACE
CLASS METHODS
- new ( [ $maxbytes] )
-
Creates a new
JSP::Runtime
object and returns it.If the $maxbytes option is given, it's taken to be the number of bytes that can be allocated before garbage collection is run. If ommited defaults to 4MB.
INSTANCE METHODS
1 POD Error
The following errors were encountered while parsing the POD:
- Around line 88:
=over without closing =back