class Axiom::Adapter::DataObjects

Reopenend to add functionality that should eventually be puhsed down to Adapter::DataObjects proper, or whatever will be the base class.

Attributes

uri[R]

The URI this adapter uses for establishing a connection

@return [Addressable::URI]

@api private

Public Instance Methods

gateway(relation) click to toggle source

Wrap the given relation with a gateway

@param [Axiom::Relation] relation

the relation to wrap with a gateway

@return [Axiom::Relation::Gateway]

@api private

# File lib/rom/support/axiom/adapter/data_objects.rb, line 33
def gateway(relation)
  Axiom::Relation::Gateway.new(self, relation)
end