/* * Copyright © 2014 Cask Data, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ package co.cask.cdap.api.stream; import co.cask.cdap.api.flow.flowlet.StreamEvent; import java.util.Objects; import javax.annotation.concurrent.NotThreadSafe; /** * Represents decoder that turns {@link StreamEvent} into key value pair. * * @param <K> Type of key that this class decodes. * @param <V> Type of value that this class decodes. */ public interface StreamEventDecoder<K, V> { /** * Decode a {@link StreamEvent}. * * @param event The event to be decoded. * @param result Reusable object for putting decode result. * @return The decode result. It can be the same instance as the one provided as argument. */ DecodeResult<K, V> decode(StreamEvent event, DecodeResult<K, V> result); /** * Represents the decoded result pair. * * @param <K> Type of key. * @param <V> Type of value. */ @NotThreadSafe static final class DecodeResult<K, V> { private K key; private V value; public K getKey() { return key; } public DecodeResult<K, V> setKey(K key) { this.key = key; return this; } public V getValue() { return value; } public DecodeResult<K, V> setValue(V value) { this.value = value; return this; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } DecodeResult decodeResult = (DecodeResult) o; return key.equals(decodeResult.key) && value.equals(decodeResult.value); } @Override public int hashCode() { return Objects.hash(key, value); } } }