You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hivemind.apache.org by Apache Wiki <wi...@apache.org> on 2005/09/26 14:30:45 UTC

[Jakarta-hivemind Wiki] Update of "StatefulServiceLifecycleListener" by Marcus Schulte

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Jakarta-hivemind Wiki" for change notification.

The following page has been changed by Marcus Schulte:
http://wiki.apache.org/jakarta-hivemind/StatefulServiceLifecycleListener

New page:
{{{
package scm.hivemind.statefulservice;


/**
 * Lifecycle-Interface, das von Services, die unter dem "stateful" service-model
 * laufen können, implementiert werden kann (und sollte)
 *
 * @author Marcus Schulte
 */
public interface StatefulServiceLifecycleListener {
    
    /**
     * called when the client conversation is paused (e.g. at the end
     * of an http request)
     */
    void pauseConversation();
    
    /**
     * called when the client conversation is resumed (e.g. at the start of an
     * http request)
     */
    void resumeConversation();
    
    /**
     * called when the client conversation terminates
     * because, e.g., the session holding it is invalidated.
     */
    void terminateConversation();
}

}}}

---------------------------------------------------------------------
To unsubscribe, e-mail: hivemind-cvs-unsubscribe@jakarta.apache.org
For additional commands, e-mail: hivemind-cvs-help@jakarta.apache.org