PHPDaemon\SockJS\Methods\Generic::gcCheck PHP Method

gcCheck() public method

gcCheck
public gcCheck ( ) : void
return void
    public function gcCheck()
    {
        if ($this->stopped) {
            return;
        }
        $max = $this->appInstance->config->gcmaxresponsesize->value;
        if ($max > 0 && $this->bytesSent > $max) {
            $this->stop();
        }
    }