Class: Synchronisable::Gateway

Inherits:
Object
  • Object
show all
Defined in:
lib/synchronisable/gateway.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(synchronizer) ⇒ Gateway

Returns a new instance of Gateway.



5
6
7
# File 'lib/synchronisable/gateway.rb', line 5

def initialize(synchronizer)
  @synchronizer = synchronizer
end

Instance Attribute Details

#synchronizerObject (readonly)

Returns the value of attribute synchronizer.



3
4
5
# File 'lib/synchronisable/gateway.rb', line 3

def synchronizer
  @synchronizer
end

Instance Method Details

#fetchObject



9
10
11
# File 'lib/synchronisable/gateway.rb', line 9

def fetch
  not_implemented :fetch
end

#find(id) ⇒ Object



13
14
15
# File 'lib/synchronisable/gateway.rb', line 13

def find(id)
  not_implemented :find
end