From 81d4758f082a63a1aab014d0db142a63e37bb8d9 Mon Sep 17 00:00:00 2001 From: Jay McCarthy Date: Mon, 11 Jun 2007 22:50:19 +0000 Subject: [PATCH] Updates from Gurnell svn: r6579 --- collects/web-server/docs/reference/managers.scrbl | 5 +++-- collects/web-server/docs/reference/servlet.scrbl | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/collects/web-server/docs/reference/managers.scrbl b/collects/web-server/docs/reference/managers.scrbl index 5d820f6917..4b210732a9 100644 --- a/collects/web-server/docs/reference/managers.scrbl +++ b/collects/web-server/docs/reference/managers.scrbl @@ -28,7 +28,8 @@ the users and implementers of managers. [continuation-store! (number? any/c expiration-handler? . -> . (list/c number? number?))] [continuation-lookup (number? number? number? . -> . any/c)])]{ @scheme[create-instance] is called to initialize a instance, to hold the - continuations of one servlet session. It is passed some arbitrary data and + continuations of one servlet session. It is passed some internal data to store + for the server and a function to call when the instance is expired. It runs the id of the instance. @@ -47,7 +48,7 @@ the users and implementers of managers. @scheme[continuation-store!] is given an instance-id, a continuation value, and a function to include in the exception thrown if the continuation is looked up and has been expired. The two numbers returned are a - continuation-id and a random nonce. + continuation-id and a nonce. @scheme[continuation-lookup] finds the continuation value associated with the instance-id, continuation-id, and nonce triple it is given. diff --git a/collects/web-server/docs/reference/servlet.scrbl b/collects/web-server/docs/reference/servlet.scrbl index 13b79a3c35..9a84ce733c 100644 --- a/collects/web-server/docs/reference/servlet.scrbl +++ b/collects/web-server/docs/reference/servlet.scrbl @@ -26,7 +26,8 @@ provides: @defthing[timeout integer?]{ This number is used as the @scheme[continuation-timeout] argument to a timeout-based continuation manager used for this servlet. (See - @secref["timeouts.ss"].) + @secref["timeouts.ss"].) (i.e., you do not have a choice of the manager + for this servlet and will be given a timeout-based manager.) } @defproc[(start [initial-request request?])