public interface HttpSessionAdministration
HttpSession
.Modifier and Type | Method and Description |
---|---|
void |
invalidate(boolean isRequireNewSession)
Triggers invalidating the
HttpSession . |
boolean |
isOperationComplete()
Indicates if the invalidate or store operation are complete.
|
void |
store()
Triggers storing the
HttpSession . |
void invalidate(boolean isRequireNewSession) throws Throwable
HttpSession
.isRequireNewSession
- true
to have a new HttpSession
created.Throwable
- If immediate failure in invalidating the HttpSession
.void store() throws Throwable
HttpSession
.Throwable
- If immediate failure in storing the HttpSession
.boolean isOperationComplete() throws Throwable
Indicates if the invalidate or store operation are complete.
As is an AsynchronousManagedObject
, the next time a new
Task
is run the operation should be complete. This method enables
determining if completed immediately and there were no failures of the
operation.
true
if the invalidate or store operation is
complete.Throwable
- Possible failure in invalidating or storing the
HttpSession
.Copyright © 2005–2016. All rights reserved.