23
23
import java .util .List ;
24
24
import java .util .Map ;
25
25
import java .util .concurrent .ConcurrentHashMap ;
26
- import java .util .stream .Collectors ;
27
26
28
27
import org .apache .kafka .common .TopicPartition ;
29
28
import org .jspecify .annotations .Nullable ;
30
29
31
- import org .springframework .util .CollectionUtils ;
32
-
33
30
/**
34
31
* Manages the {@link ConsumerSeekAware.ConsumerSeekCallback} s for the listener. If the
35
32
* listener subclasses this class, it can easily seek arbitrary topics/partitions without
@@ -89,22 +86,6 @@ public void unregisterSeekCallback() {
89
86
this .callbackForThread .remove (Thread .currentThread ());
90
87
}
91
88
92
- /**
93
- * Return the callback for the specified topic/partition.
94
- * @param topicPartition the topic/partition.
95
- * @return the callback (or null if there is no assignment).
96
- * @deprecated Replaced by {@link #getSeekCallbacksFor(TopicPartition)}
97
- */
98
- @ Deprecated (since = "3.3" , forRemoval = true )
99
- @ Nullable
100
- protected ConsumerSeekCallback getSeekCallbackFor (TopicPartition topicPartition ) {
101
- List <ConsumerSeekCallback > callbacks = getSeekCallbacksFor (topicPartition );
102
- if (CollectionUtils .isEmpty (callbacks )) {
103
- return null ;
104
- }
105
- return callbacks .get (0 );
106
- }
107
-
108
89
/**
109
90
* Return the callbacks for the specified topic/partition.
110
91
* @param topicPartition the topic/partition.
@@ -116,22 +97,6 @@ protected List<ConsumerSeekCallback> getSeekCallbacksFor(TopicPartition topicPar
116
97
return this .topicToCallbacks .get (topicPartition );
117
98
}
118
99
119
- /**
120
- * The map of callbacks for all currently assigned partitions.
121
- * @return the map.
122
- * @deprecated Replaced by {@link #getTopicsAndCallbacks()}
123
- */
124
- @ Deprecated (since = "3.3" , forRemoval = true )
125
- protected Map <TopicPartition , ConsumerSeekCallback > getSeekCallbacks () {
126
- Map <TopicPartition , List <ConsumerSeekCallback >> topicsAndCallbacks = getTopicsAndCallbacks ();
127
- return topicsAndCallbacks .entrySet ().stream ()
128
- .filter (entry -> !entry .getValue ().isEmpty ())
129
- .collect (Collectors .toMap (
130
- Map .Entry ::getKey ,
131
- entry -> entry .getValue ().get (0 )
132
- ));
133
- }
134
-
135
100
/**
136
101
* The map of callbacks for all currently assigned partitions.
137
102
* @return the map.
0 commit comments