Status
Current state: Accepted
Discussion thread: here
Vote thread: here
JIRA: - KAFKA-6018Getting issue details... STATUS
Pull request: PR#4033
Released: 1.1.0
Motivation
KafkaFuture.Function
and KafkaFuture.BiCosumer
are currently public abstract classes with only one abstract method.
This means you cannot use them with a java 8 lambda, as that only works for functional interfaces.
Replacing those classes with interfaces makes them lambda compatible.
Public Interfaces
In the public interface, only org.apache.kafka.common.KafkaFuture
has helper classes which can better be expressed as functional interfaces.
Proposed Changes
The KIP introduces a FunctionInterface
which defines the new functional interface. The old Function
class is kept for backwards compatibility reasons, but documented to be a candidate for deprecation or removal. The @Deprecated
was not yet added to this class. This was also done for the old signature of the thenApply
function (the only public function which was using this Function
object).
As the Biconsumer
class was not used in the public interface, it was changed from a class to an interface.
To make it easier to work with the KafkaFuture
the new public function whenComplete
is introduced. This allows the user of KafkaFuture
to execute an action after the future is completed and it matches the signature and the behaviour of CompletableFuture#whenComplete
.
/** * Returns a new KafkaFuture with the same result or exception as this future, that executes the given action * when this future completes. * * When this future is done, the given action is invoked with the result (or null if none) and the exception * (or null if none) of this future as arguments. * * The returned future is completed when the action returns. * The supplied action should not throw an exception. However, if it does, the following rules apply: * if this future completed normally but the supplied action throws an exception, then the returned future completes * exceptionally with the supplied action's exception. * Or, if this future completed exceptionally and the supplied action throws an exception, then the returned future * completes exceptionally with this future's exception. * * The action may be invoked by the thread that calls {@code whenComplete} or it may be invoked by the thread that * completes the future. * * @param action the action to preform * @return the new future */ public abstract KafkaFuture<T> whenComplete(BiConsumer<? super T, ? super Throwable> action);
Compatibility, Deprecation, and Migration Plan
In a future release the KafkaFuture.Function
and thenApply
function which uses this class can be marked as @Deprecated
. Later on they can be removed.
When KIP-118 is implemented, KafkaFuture
can extend CompletableFuture
or implement CompletionStage
.
Rejected Alternatives
- Keep the current interface as is, as a nicer syntax to address this api might not be worth breaking backwards compatibility
- Wait for a kafka release which will not support java 7 anymore. And replace or extend
KafkaFuture
with the java 8CompletionStage
. This KIP can then become part of KIP-118: Drop Support for Java 7