/**
  * createSession
  *
  * @return  FoundationSession
  * @see     VanillaSessionBuilder
  */
 protected function createSession(Connection $connection, ClientHolder $client_holder, $stamp)
 {
     $this->configuration->setDefaultValue('class:session', '\\PommProject\\Foundation\\Session');
     return parent::createSession($connection, $client_holder, $stamp);
 }
 protected function postConfigure(Session $session)
 {
     parent::postConfigure($session);
     $session->registerClientPooler(new ListenerPooler());
 }