class FlipFab::Persistence

Attributes

context[R]
feature_name[R]

Public Class Methods

new(feature_name, context) click to toggle source
# File lib/flip_fab/persistence.rb, line 5
def initialize(feature_name, context)
  @feature_name = feature_name
  @context      = context
end

Public Instance Methods

read() click to toggle source
# File lib/flip_fab/persistence.rb, line 10
def read
  raise NotImplementedError
end
write(state) click to toggle source
# File lib/flip_fab/persistence.rb, line 14
def write(state)
  raise NotImplementedError
end