Class: GraphQL::Dataloader::NullDataloader
- Inherits:
-
GraphQL::Dataloader
- Object
- GraphQL::Dataloader
- GraphQL::Dataloader::NullDataloader
- Defined in:
- lib/graphql/dataloader/null_dataloader.rb
Overview
The default implementation of dataloading -- all no-ops.
The Dataloader interface isn't public, but it enables simple internal code while adding the option to add Dataloader.
Constant Summary
Constants inherited from GraphQL::Dataloader
Instance Method Summary collapse
- #append_job ⇒ Object
-
#run ⇒ Object
These are all no-ops because code was executed sychronously.
- #run_isolated ⇒ Object
- #yield ⇒ Object
Methods inherited from GraphQL::Dataloader
#clear_cache, #get_fiber_variables, #initialize, #join_queues, #nonblocking?, #set_fiber_variables, use, #with, with_dataloading
Constructor Details
This class inherits a constructor from GraphQL::Dataloader
Instance Method Details
#append_job ⇒ Object
18 19 20 21 |
# File 'lib/graphql/dataloader/null_dataloader.rb', line 18 def append_job yield nil end |
#run ⇒ Object
These are all no-ops because code was executed sychronously.
12 |
# File 'lib/graphql/dataloader/null_dataloader.rb', line 12 def run; end |
#run_isolated ⇒ Object
13 |
# File 'lib/graphql/dataloader/null_dataloader.rb', line 13 def run_isolated; yield; end |