Sha256: b4af00467faec28609bef9d1722e35ee97c72f2068c8b8ea5f894beebe1703d4
Contents?: true
Size: 457 Bytes
Versions: 14
Compression:
Stored size: 457 Bytes
Contents
class CallbackHandler def initialize(config) @config = config || {} end def before_start load(@config[:before_start]) if @config[:before_start] end def after_complete load(@config[:after_complete]) if @config[:after_complete] end def before_creating_workers load(@config[:before_creating_workers]) if @config[:before_creating_workers] end def after_sync load(@config[:after_sync]) if @config[:after_sync] end end
Version data entries
14 entries across 14 versions & 1 rubygems