Sha256: bf8bdc56cd7e2cd8cea6b34c7f8c1aaf5fab6c6beeafb22cc3ec98049dd9b2b0
Contents?: true
Size: 512 Bytes
Versions: 47
Compression:
Stored size: 512 Bytes
Contents
module Dynflow module CoordinatorAdapters class Abstract include Algebrick::TypeCheck def initialize(world) Type! world, World @world = world end def create_record(record) raise NotImplementedError end def update_record(record) raise NotImplementedError end def delete_record(record) raise NotImplementedError end def find_records(record) raise NotImplementedError end end end end
Version data entries
47 entries across 47 versions & 1 rubygems