6
6
import java .util .concurrent .ExecutorService ;
7
7
import java .util .concurrent .Executors ;
8
8
import java .util .concurrent .Future ;
9
+ import java .util .concurrent .ThreadFactory ;
9
10
import java .util .concurrent .TimeUnit ;
10
11
import java .util .function .BiConsumer ;
11
12
import org .apache .kafka .clients .consumer .Consumer ;
@@ -64,7 +65,7 @@ public void close() throws Exception {
64
65
public static final class Builder <K , V > {
65
66
private final Collection <BiConsumer <? super K , ? super V >> callbacks =
66
67
new ConcurrentLinkedQueue <>();
67
- private ExecutorService executorService = Executors . newSingleThreadExecutor () ;
68
+ private ExecutorService executorService ;
68
69
private boolean cleanupExecutor =
69
70
true ; // if builder creates executor shutdown executor while closing event listener
70
71
@@ -84,10 +85,26 @@ public Builder<K, V> withExecutorService(
84
85
85
86
public KafkaLiveEventListener <K , V > build (
86
87
String consumerName , Config kafkaConfig , Consumer <K , V > kafkaConsumer ) {
88
+ if (executorService == null ) {
89
+ executorService =
90
+ Executors .newSingleThreadExecutor (new ListenerThreadFactory (consumerName ));
91
+ }
87
92
return new KafkaLiveEventListener <>(
88
93
new KafkaLiveEventListenerCallable <>(consumerName , kafkaConfig , kafkaConsumer , callbacks ),
89
94
executorService ,
90
95
cleanupExecutor );
91
96
}
92
97
}
93
98
}
99
+
100
+ class ListenerThreadFactory implements ThreadFactory {
101
+ private final String name ;
102
+
103
+ public ListenerThreadFactory (String consumerName ) {
104
+ this .name = "kafka-live-event-listener-" + consumerName ;
105
+ }
106
+
107
+ public Thread newThread (Runnable r ) {
108
+ return new Thread (r , name );
109
+ }
110
+ }
0 commit comments