Thruway\Role\Dealer::processQueue PHP Method

processQueue() private method

private processQueue ( Session $session )
$session Thruway\Session
    private function processQueue(Session $session)
    {
        $registrationsForThisSession = $this->registrationsBySession[$session];
        /** @var Registration $registration */
        foreach ($registrationsForThisSession as $registration) {
            if ($registration->getAllowMultipleRegistrations()) {
                // find the procedure for this registration
                /** @var $procedure Procedure */
                $procedure = $this->procedures[$registration->getProcedureName()];
                $procedure->processQueue();
            }
        }
    }