Options
All
  • Public
  • Public/Protected
  • All
Menu

Class EntryProcessor<K, V, R>

An invocable agent that operates against the entries within a NamedMap.

Type parameters

  • K = any

    the type of the Map entry key

  • V = any

    the type of the Map entry value

  • R = any

    the type of value returned by the EntryProcessor

Hierarchy

Implements

Implemented by

Index

Constructors

Properties

Methods

Constructors

Protected constructor

  • Constructs a new EntryProcessor.

    Parameters

    • clz: string

      Server-side EntryProcessor implementation type identifier.

    Returns EntryProcessor

Properties

@class

@class: string

Methods

andThen

when

  • Returns a ConditionalProcessor comprised of this processor and the provided filter.

    The specified entry processor gets invoked if and only if the filter applied to the entry evaluates to true; otherwise the result of the invocation will return null.

    Parameters

    Returns EntryProcessor<K, V, R>