Method: RDF::Repository#snapshot

Defined in:
lib/rdf/repository.rb

#snapshotDataset

A queryable snapshot of the repository for isolated reads.

Returns:

  • (Dataset)

    an immutable Dataset containing a current snapshot of the Repository contents.

Raises:

  • (NotImplementedError)

229
230
231
# File 'lib/rdf/repository.rb', line 229

def snapshot
  raise NotImplementedError.new("#{self.class}#snapshot")
end