BrightSide Workbench Full Report + Source Code
org.turro.elephant.servlet.context.ElephantSessionListener Class Reference
Inheritance diagram for org.turro.elephant.servlet.context.ElephantSessionListener:
Collaboration diagram for org.turro.elephant.servlet.context.ElephantSessionListener:

Public Member Functions

 ElephantSessionListener ()
 
void sessionCreated (HttpSessionEvent se)
 
void sessionDestroyed (HttpSessionEvent se)
 

Static Public Member Functions

static AtomicCounter getCounter ()
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 30 of file ElephantSessionListener.java.

Constructor & Destructor Documentation

◆ ElephantSessionListener()

org.turro.elephant.servlet.context.ElephantSessionListener.ElephantSessionListener ( )

Definition at line 32 of file ElephantSessionListener.java.

32  {
33  }

Member Function Documentation

◆ getCounter()

static AtomicCounter org.turro.elephant.servlet.context.ElephantSessionListener.getCounter ( )
static

Definition at line 47 of file ElephantSessionListener.java.

47  {
48  return activeSessions;
49  }

◆ sessionCreated()

void org.turro.elephant.servlet.context.ElephantSessionListener.sessionCreated ( HttpSessionEvent  se)

Definition at line 36 of file ElephantSessionListener.java.

36  {
37  activeSessions.increment();
38  }

◆ sessionDestroyed()

void org.turro.elephant.servlet.context.ElephantSessionListener.sessionDestroyed ( HttpSessionEvent  se)

Definition at line 41 of file ElephantSessionListener.java.

41  {
42  activeSessions.decrement();
43  }

The documentation for this class was generated from the following file: