Welcome to mirror list, hosted at ThFree Co, Russian Federation.

deferred.rb « graphql « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d0b36aabd5f2cad0d8398f0fd19ddfc429e64bc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

# A marker interface that allows use to lazily resolve a wider range of value
module Gitlab
  module Graphql
    module Deferred
      def execute
        raise NotImplementedError, 'Deferred classes must provide an execute method'
      end
    end
  end
end