Sha256: fe388b7b0bdbe27541e0cf7899351bf42615b4a760ec90d43b0323e5b1ad7da5

Contents?: true

Size: 512 Bytes

Versions: 10

Compression:

Stored size: 512 Bytes

Contents

# typed: ignore

# Copyright (c) 2015 Sqreen. All Rights Reserved.
# Please refer to our terms for more information: https://www.sqreen.com/terms.html

module Sqreen
  module Actions
    # documents the operations an actions index should implement
    class ActionsIndex
      # all actions matching, possibly already expired
      def actions_matching(_key)
        raise 'implement in subclasses'
      end

      def index(_params, _action)
        raise 'implement in subclasses'
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
sqreen-1.25.1 lib/sqreen/actions/actions_index.rb
sqreen-1.25.0 lib/sqreen/actions/actions_index.rb
sqreen-1.24.3 lib/sqreen/actions/actions_index.rb
sqreen-1.24.2 lib/sqreen/actions/actions_index.rb
sqreen-1.24.1 lib/sqreen/actions/actions_index.rb
sqreen-1.24.0 lib/sqreen/actions/actions_index.rb
sqreen-1.23.2 lib/sqreen/actions/actions_index.rb
sqreen-1.23.1 lib/sqreen/actions/actions_index.rb
sqreen-1.23.0 lib/sqreen/actions/actions_index.rb
sqreen-1.22.1 lib/sqreen/actions/actions_index.rb