コード例 #1
0
def getCounter(self):
    """ return a counter which is increased on catalog changes """
    processQueue()
    return self.__af_old_getCounter()
コード例 #2
0
def unrestrictedSearchResults(self, REQUEST=None, **kw):
    """ flush the queue before querying the catalog """
    processQueue()
    return self.__af_old_unrestrictedSearchResults(REQUEST, **kw)
コード例 #3
0
 def unindex(self, obj):
     result = orig_unindex(self, obj)
     processQueue()
     return result
コード例 #4
0
 def reindex(self, obj, attributes=None):
     result = orig_reindex(self, obj, attributes=attributes)
     processQueue()
     return result
コード例 #5
0
ファイル: monkey.py プロジェクト: FHNW/collective.indexing
def getCounter(self):
    """ return a counter which is increased on catalog changes """
    processQueue()
    return self.__af_old_getCounter()
コード例 #6
0
ファイル: monkey.py プロジェクト: FHNW/collective.indexing
def unrestrictedSearchResults(self, REQUEST=None, **kw):
    """ flush the queue before querying the catalog """
    processQueue()
    return self.__af_old_unrestrictedSearchResults(REQUEST, **kw)