Horde_ActiveSync_Collections::resetPingCache PHP Метод

resetPingCache() публичный Метод

Force reset all collection's PINGABLE flag. Used to force client to issue a non-empty PING request.
public resetPingCache ( )
    public function resetPingCache()
    {
        $collections = $this->_cache->getCollections(false);
        foreach ($collections as $id => $collection) {
            $this->_logger->info(sprintf('UNSETTING collection %s (%s) PINGABLE flag.', $collection['serverid'], $id));
            $this->_cache->removePingableCollection($id);
        }
    }