Browse Source
Sub-task required to allow to define custom processor names with KStreams DSL(KIP-307) : - add new public interface NamedOperation - deprecate methods Joined.as() and Joined.name() - update Suppredded interface to extend NamedOperation Reviewers: Matthias J. Sax <mjsax@apache.org>, John Roesler <john@confluent.io>, Bill Bejeck <bbejeck@gmail.com>pull/6475/head
Florian Hussonnois
6 years ago
committed by
Bill Bejeck
5 changed files with 124 additions and 11 deletions
@ -0,0 +1,32 @@
@@ -0,0 +1,32 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You 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 org.apache.kafka.streams.kstream; |
||||
|
||||
/** |
||||
* Default interface which can be used to personalized the named of operations, internal topics or store. |
||||
*/ |
||||
interface NamedOperation<T extends NamedOperation<T>> { |
||||
|
||||
/** |
||||
* Sets the name to be used for an operation. |
||||
* |
||||
* @param name the name to use. |
||||
* @return an instance of {@link NamedOperation} |
||||
*/ |
||||
T withName(final String name); |
||||
|
||||
} |
@ -0,0 +1,45 @@
@@ -0,0 +1,45 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You 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 org.apache.kafka.streams.kstream.internals; |
||||
|
||||
import org.apache.kafka.common.serialization.Serde; |
||||
import org.apache.kafka.streams.kstream.Joined; |
||||
|
||||
public class JoinedInternal<K, V, VO> extends Joined<K, V, VO> { |
||||
|
||||
JoinedInternal(final Joined<K, V, VO> joined) { |
||||
super(joined); |
||||
} |
||||
|
||||
public Serde<K> keySerde() { |
||||
return keySerde; |
||||
} |
||||
|
||||
public Serde<V> valueSerde() { |
||||
return valueSerde; |
||||
} |
||||
|
||||
public Serde<VO> otherValueSerde() { |
||||
return otherValueSerde; |
||||
} |
||||
|
||||
@Override // TODO remove annotation when super.name() is removed
|
||||
@SuppressWarnings("deprecation") // this method should not be removed if super.name() is removed
|
||||
public String name() { |
||||
return name; |
||||
} |
||||
} |
Loading…
Reference in new issue