Module: Mongoid::Config::Validators::AsyncQueryExecutor Private
Do not use. This module is for internal use only.
Relationships & Source Files | |
Defined in: | lib/mongoid/config/validators/async_query_executor.rb |
Overview
Validates the async query executor options in the ::Mongoid
configuration. Used during application bootstrapping.
Instance Method Summary
-
#validate(options)
Internal use only
Validate the
::Mongoid
configuration options related to the async query executor.
Instance Method Details
#validate(options)
Validate the ::Mongoid
configuration options related to the async query executor.
# File 'lib/mongoid/config/validators/async_query_executor.rb', line 24
def validate( ) if .key?(:async_query_executor) if [:async_query_executor].to_sym == :immediate && ! [:global_executor_concurrency].nil? raise Errors::InvalidGlobalExecutorConcurrency end end end