Sha256: 0c76e028442bd40cce14ee17e519cadf5fc72416826bd3d144feb6774b36def6

Contents?: true

Size: 515 Bytes

Versions: 3

Compression:

Stored size: 515 Bytes

Contents

module Fulmar
  module Infrastructure
    module Service
      module Cache
        # Implements no cache handling
        class DummyCacheService
          # @param [Fulmar::Infrastructure::Service::ShellService] shell
          # @param [Hash] config
          def initialize(shell, config)
            @remote_shell = shell
            @config = config
          end

          def clear
            true
          end

          def warmup
            true
          end
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fulmar-0.6.5 lib/fulmar/infrastructure/service/cache/dummy_cache_service.rb
fulmar-0.6.4 lib/fulmar/infrastructure/service/cache/dummy_cache_service.rb
fulmar-0.6.3 lib/fulmar/infrastructure/service/cache/dummy_cache_service.rb