Packages

case class CompositeEvaluationContext(contexts: Seq[EvaluationContext], success: Counter, failure: Counter) extends EvaluationContext with Product with Serializable

Linear Supertypes
Serializable, Serializable, Product, Equals, EvaluationContext, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CompositeEvaluationContext
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. EvaluationContext
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new CompositeEvaluationContext(contexts: Seq[EvaluationContext], success: Counter, failure: Counter)

Value Members

  1. def accessor(name: String): FieldAccessor

    Gets a references to a field's value

    Gets a references to a field's value

    name

    field name

    Definition Classes
    CompositeEvaluationContextEvaluationContext
  2. def cache: Map[String, EnrichmentCache]

    Enrichment caches

    Enrichment caches

    Definition Classes
    CompositeEvaluationContextEvaluationContext
  3. val contexts: Seq[EvaluationContext]
  4. def errors: Queue[EvaluationError]

    Access to any errors that have occurred - note that errors will generally only be kept if the converter error mode is set to ReturnErrors

    Access to any errors that have occurred - note that errors will generally only be kept if the converter error mode is set to ReturnErrors

    Definition Classes
    CompositeEvaluationContextEvaluationContext
  5. def evaluate(args: Array[AnyRef]): Either[EvaluationError, Array[AnyRef]]

    Evaluate all values using the given arguments.

    Evaluate all values using the given arguments. The returned array may be mutated on subsequent calls to evaluate, so shouldn't be kept long-term

    args

    single row of input

    Definition Classes
    CompositeEvaluationContextEvaluationContext
  6. val failure: Counter

    Counter for tracking failures

    Counter for tracking failures

    Definition Classes
    CompositeEvaluationContextEvaluationContext
  7. val line: Long

    The current line being processed.

    The current line being processed.

    This may be an actual line (e.g. a csv row), or a logical line (e.g. an avro record)

    Definition Classes
    EvaluationContext
  8. def metrics: ConverterMetrics

    Metrics registry, accessible for tracking any custom values

    Metrics registry, accessible for tracking any custom values

    Definition Classes
    CompositeEvaluationContextEvaluationContext
  9. val success: Counter

    Counter for tracking successes

    Counter for tracking successes

    Definition Classes
    CompositeEvaluationContextEvaluationContext