class Resync::ChangeList

Public Instance Methods

all_changes(of_type: nil, in_range: nil) click to toggle source

Delegates to {ChangeList#changes} for interoperation with {ChangeList#all_changes}. @param of_type [Types::Change] the change type @param in_range [Range<Time>] the range of modification times @return [Enumerator::Lazy<Resource>] a lazy enumeration of the matching changes, or all

changes if neither +of_type+ nor +in_range+ is specified.
# File lib/resync/client/mixins/change_index.rb, line 44
def all_changes(of_type: nil, in_range: nil)
  changes(of_type: of_type, in_range: in_range).lazy
end