Class: RoadForest::RDF::SplitManager

Inherits:
WriteManager show all
Defined in:
lib/roadforest/rdf/access-manager.rb

Direct Known Subclasses

CopyManager, UpdateManager

Constant Summary

Constants included from Normalization

Normalization::Vocabs

Instance Attribute Summary collapse

Attributes inherited from ReadOnlyManager

#resource, #rigor, #source_graph

Instance Method Summary collapse

Methods inherited from WriteManager

#delete, #insert

Methods inherited from ReadOnlyManager

#build_query, #each, #execute_search, #query_execute, #query_pattern

Methods included from Normalization

#expand_curie, #expand_curie_pair, #interned_uri, #literal, #normalize_context, #normalize_property, #normalize_resource, #normalize_statement, #normalize_term, #normalize_tuple, #normalize_uri, #relevant_prefixes_for_graph, #root_url, #uri, #vocabularies_in_graph

Instance Attribute Details

#target_graphObject Also known as: destination_graph

Returns the value of attribute target_graph.



80
81
82
# File 'lib/roadforest/rdf/access-manager.rb', line 80

def target_graph
  @target_graph
end

Instance Method Details

#dupObject



84
85
86
87
88
# File 'lib/roadforest/rdf/access-manager.rb', line 84

def dup
  other = super
  other.target_graph = self.target_graph
  return other
end

#relevant_prefixesObject



90
91
92
# File 'lib/roadforest/rdf/access-manager.rb', line 90

def relevant_prefixes
  super.merge(relevant_prefixes_for_graph(destination_graph))
end