validateTimestamps() 공개 메소드

Perform some sanity checking on the various timestamps to ensure we are in a valid state. Basically checks that we are not currently running a looping sync and that the last looping sync ending normally.
사용 중단: Not needed any longer. Remove in H6.
public validateTimestamps ( ) : boolean
리턴 boolean
예제 #1
0
 public function testValidateTimestamps()
 {
     $cache = new Horde_ActiveSync_SyncCache($this->_state, 'devid', 'userone');
     $this->assertEquals(true, $cache->validateTimestamps());
     $cache->lasthbsyncstarted = time();
     $this->assertEquals(false, $cache->validateTimestamps());
 }