| |
|
| org.araneaframework.http.ThreadCloningContext
All known Subclasses: org.araneaframework.http.filter.StandardThreadCloningFilterService,
ThreadCloningContext | public interface ThreadCloningContext extends Serializable(Code) | | Service that clones currently running session thread upon request and sends a response
that redirects to cloned session thread. It can be used to support "open link in new
window" feature in browsers.
author: Taimo Peelo |
Field Summary | |
final public static String | CLONE_ONLY_REQUEST_KEY Request parameter key which presence indicates that incoming request is requesting
cloning of the current session thread. | final public static String | CLONING_REQUEST_KEY Request parameter key which presence indicates that incoming request is requesting
cloning of the current session thread. |
CLONE_ONLY_REQUEST_KEY | final public static String CLONE_ONLY_REQUEST_KEY(Code) | | Request parameter key which presence indicates that incoming request is requesting
cloning of the current session thread. Presence of this should mean that snapshot
of current thread is made before request is routed to child
Service . Cloned
thread is not attached to thread router (no new window with cloned thread will be opened).
Snapshot can be acquired during the same request by calling
ThreadCloningContext.acquireThreadSnapshot .
since: 1.1 |
CLONING_REQUEST_KEY | final public static String CLONING_REQUEST_KEY(Code) | | Request parameter key which presence indicates that incoming request is requesting
cloning of the current session thread. Presence of this should mean that current
thread is cloned and then cloned thread is immediately opened in a new browser window.
|
|
|
|