module Resync::Client::Mixins::ResourceClientDelegate

A resource container that is capable of providing those resources with a {Client}

Public Instance Methods

resources=(value) click to toggle source

Sets this object as the client provider delegate for each resource. @param value [Array<Resource>] the resources for this list

Calls superclass method
# File lib/resync/client/mixins/resource_client_delegate.rb, line 13
def resources=(value)
  super
  resources.each { |r| r.client_delegate = self }
end