PiwikTracker::setForceNewVisit PHP Method

setForceNewVisit() public method

By default, Piwik will create a new visit if the last request by this user was more than 30 minutes ago. If you call setForceNewVisit() before calling doTrack*, then a new visit will be created for this request.
public setForceNewVisit ( )
    public function setForceNewVisit()
    {
        $this->forcedNewVisit = true;
        return $this;
    }