On 7/29/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> /**
> - * Marks session state as dirty
> + * Marks session state as dirty. THIS METHOD SHOULD TYPICALLY NOT
> BE CALLED
> + * BY CLIENTS; IT IS USED FOR INTERNAL BOOK KEEPING.
> */
> public final void dirty()
> {
is that right? dirty() is there partially for clients. for example:
class mysession extends websession {
int a=0;
public void increment() {
a++;
dirty();
}
}
that dirty call in there is necessary in order to mark the session as dirty
so it is pushed into httpsession. so it is there for clients, and they do
have to call it. or am i missing something?
-igor