DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
| Code Block |
|---|
public interface FixedKeyProcessor<KIn, VIn, VOut> {
default void init(final FixedKeyProcessorContext<KIn, VOut> context) {}
void process(FixedKeyRecord<KIn, VIn> record);
default void close() {}
} |
...
ContextualFixedKeyProcessor
Helper, same as ContextualProcessor.
| Code Block |
|---|
public abstract class FixedKeyContextualProcessor<KInContextualFixedKeyProcessor<KIn, VIn, VOut> implements FixedKeyProcessor<KIn, VIn, VOut> { private FixedKeyProcessorContext<KIn, VOut> context; protected FixedKeyContextualProcessor() {} @Override public void init(final FixedKeyProcessorContext<KIn, VOut> context) { this.context = context; } protected final FixedKeyProcessorContext<KIn, VOut> context() { return context; } } |
...