Search in sources :

Example 1 with EnrichmentStrategyDescriptor

use of org.zalando.nakadi.domain.EnrichmentStrategyDescriptor in project nakadi by zalando.

the class Enrichment method enrich.

public void enrich(final BatchItem batchItem, final EventType eventType) throws EnrichmentException {
    for (final EnrichmentStrategyDescriptor descriptor : eventType.getEnrichmentStrategies()) {
        final EnrichmentStrategy strategy = getStrategy(descriptor);
        strategy.enrich(batchItem, eventType);
    }
}
Also used : EnrichmentStrategyDescriptor(org.zalando.nakadi.domain.EnrichmentStrategyDescriptor)

Aggregations

EnrichmentStrategyDescriptor (org.zalando.nakadi.domain.EnrichmentStrategyDescriptor)1