Horde_Kolab_Storage_Driver_Base::getStampFromToken PHP Method

getStampFromToken() public method

Returns a stamp for the current folder status. This stamp can be used to identify changes in the folder data. This method, as opposed to self::getStamp(), uses the IMAP client's token to calculate the changes.
public getStampFromToken ( string $folder, string $token, array $ids ) : Horde_Kolab_Storage_Folder_Stamp
$folder string Return the stamp for this folder.
$token string A sync token provided by the IMAP server.
$ids array An array of UIDs that we know about.
return Horde_Kolab_Storage_Folder_Stamp A stamp indicating the current folder status.
    public function getStampFromToken($folder, $token, array $ids)
    {
        throw new Horde_Kolab_Storage_Exception('Not supported with this driver.');
    }