Liking cljdoc? Tell your friends :D

eva.config


*properties*clj

source

*system-properties*clj

source

base-server-configclj

(base-server-config prop-defs props)
source

configclj

(config key)
(config props key)
(config prop-defs props key)

Get a configuration value. Returns nil if the key is not found.

Get a configuration value. Returns nil if the key is not found.
sourceraw docstring

config-errorcljmacro

(config-error subtype detail-str data)
(config-error subtype detail-str data cause)

Records this raise-site under :eva.config.error/<subtype> in recide.impl/default-error-definition, and expands into the equivalent of:

   (error (str "<subtype-generic-str>: " detail-str)
          :eva.config.error/<subtype>
          cause)

The following map shows, for each subtype, what keywords are required in the data map, and what the generic portion of the string will be:

{:parse-failure {:required #{:source-type :source :target-type}, :generic-str "Eva config parse error"}, :key-not-found {:required #{:config-key}, :generic-str "No entry found for config key"}}

Records this raise-site under :eva.config.error/<subtype> in recide.impl/default-error-definition, and expands into the
          equivalent of:

       (error (str "<subtype-generic-str>: " detail-str)
              :eva.config.error/<subtype>
              cause)

The following map shows, for each subtype, what keywords are required in
the data map, and what the generic portion of the string will be:

   {:parse-failure {:required #{:source-type :source :target-type},
                   :generic-str "Eva config parse error"},
   :key-not-found {:required #{:config-key},
                   :generic-str "No entry found for config key"}}
sourceraw docstring

config-strictclj

(config-strict key)
(config-strict props key)
(config-strict prop-defs props key)

Get a configuration value. Throws if the key is not found.

Get a configuration value. Throws if the key is not found.
sourceraw docstring

filter-name-prefixclj

(filter-name-prefix prefix)
source

helpclj

(help & [path])
source

parse-ascljmultimethod

source

raise-config-errorcljmacro

(raise-config-error subtype detail-str data)
(raise-config-error subtype detail-str data cause)

Records this raise-site under :eva.config.error/<subtype> in recide.impl/default-error-definition and expands into:

   (raise :eva.config.error/<subtype>
          (str "<subtype-generic-str>: " detail-str)
          data
          cause)

The following map shows, for each subtype, what keywords are required in the data map, and what the generic portion of the string will be:

{:parse-failure {:required #{:source-type :source :target-type}, :generic-str "Eva config parse error"}, :key-not-found {:required #{:config-key}, :generic-str "No entry found for config key"}}

Records this raise-site under :eva.config.error/<subtype> in recide.impl/default-error-definition and expands into:

       (raise :eva.config.error/<subtype>
              (str "<subtype-generic-str>: " detail-str)
              data
              cause)

The following map shows, for each subtype, what keywords are required in
the data map, and what the generic portion of the string will be:

   {:parse-failure {:required #{:source-type :source :target-type},
                   :generic-str "Eva config parse error"},
   :key-not-found {:required #{:config-key},
                   :generic-str "No entry found for config key"}}
sourceraw docstring

reload-system-propertiesclj

(reload-system-properties)
source

select-configclj

(select-config f ks props)
source

server-config-keysclj

(server-config-keys)
(server-config-keys prop-defs)
source

with-overridescljmacro

(with-overrides m & body)
source

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close