Java 9 - how publisher and subscriber works
I am trying to understand how Subscriber
and Publisher
works in java 9.
Here I have created one subscriber
here and using SubmissionPublisher
for publishing item .
I am trying to publish 100 strings to subscriber
. If I do not make the Client
program to sleep
(see commented code in MyReactiveApp
), I do not see all the items are published.
why is it not waiting for all the strings processed here:
strs.stream().forEach(i -> publisher.submit(i)); // what happens here?
If I replace the above code with, I see all the strings are printed in console
strs.stream().forEach(System.out::println);
Client program that publishes using SubmissionPublisher
.
import java.util.List;
import java.util.concurrent.SubmissionPublisher;
import java.util.function.Supplier;
import java.util.stream.Collectors;
import java.util.stream.Stream;
public class MyReactiveApp {
public static void main(String args) throws InterruptedException {
SubmissionPublisher<String> publisher = new SubmissionPublisher<>();
MySubscriber subs = new MySubscriber();
publisher.subscribe(subs);
List<String> strs = getStrs();
System.out.println("Publishing Items to Subscriber");
strs.stream().forEach(i -> publisher.submit(i));
/*while (strs.size() != subs.getCounter()) {
Thread.sleep(10);
}*/
//publisher.close();
System.out.println("Exiting the app");
}
private static List<String> getStrs(){
return Stream.generate(new Supplier<String>() {
int i =1;
@Override
public String get() {
return "name "+ (i++);
}
}).limit(100).collect(Collectors.toList());
}
}
Subscriber
import java.util.concurrent.Flow.Subscription;
public class MySubscriber implements java.util.concurrent.Flow.Subscriber<String>{
private Subscription subscription;
private int counter = 0;
@Override
public void onSubscribe(Subscription subscription) {
this.subscription = subscription;
subscription.request(100);
}
@Override
public void onNext(String item) {
System.out.println(this.getClass().getSimpleName()+" item "+item);
//subscription.request(1);
counter++;
}
@Override
public void onError(Throwable throwable) {
System.out.println(this.getClass().getName()+ " an error occured "+throwable);
}
@Override
public void onComplete() {
System.out.println("activity completed");
}
public int getCounter() {
return counter;
}
}
output:
Publishing Items to Subscriber
MySubscriber item name 1
MySubscriber item name 2
MySubscriber item name 3
MySubscriber item name 4
MySubscriber item name 5
Exiting the app
MySubscriber item name 6
MySubscriber item name 7
MySubscriber item name 8
MySubscriber item name 9
MySubscriber item name 10
MySubscriber item name 11
MySubscriber item name 12
java-9 subscription subscriber publisher
add a comment |
I am trying to understand how Subscriber
and Publisher
works in java 9.
Here I have created one subscriber
here and using SubmissionPublisher
for publishing item .
I am trying to publish 100 strings to subscriber
. If I do not make the Client
program to sleep
(see commented code in MyReactiveApp
), I do not see all the items are published.
why is it not waiting for all the strings processed here:
strs.stream().forEach(i -> publisher.submit(i)); // what happens here?
If I replace the above code with, I see all the strings are printed in console
strs.stream().forEach(System.out::println);
Client program that publishes using SubmissionPublisher
.
import java.util.List;
import java.util.concurrent.SubmissionPublisher;
import java.util.function.Supplier;
import java.util.stream.Collectors;
import java.util.stream.Stream;
public class MyReactiveApp {
public static void main(String args) throws InterruptedException {
SubmissionPublisher<String> publisher = new SubmissionPublisher<>();
MySubscriber subs = new MySubscriber();
publisher.subscribe(subs);
List<String> strs = getStrs();
System.out.println("Publishing Items to Subscriber");
strs.stream().forEach(i -> publisher.submit(i));
/*while (strs.size() != subs.getCounter()) {
Thread.sleep(10);
}*/
//publisher.close();
System.out.println("Exiting the app");
}
private static List<String> getStrs(){
return Stream.generate(new Supplier<String>() {
int i =1;
@Override
public String get() {
return "name "+ (i++);
}
}).limit(100).collect(Collectors.toList());
}
}
Subscriber
import java.util.concurrent.Flow.Subscription;
public class MySubscriber implements java.util.concurrent.Flow.Subscriber<String>{
private Subscription subscription;
private int counter = 0;
@Override
public void onSubscribe(Subscription subscription) {
this.subscription = subscription;
subscription.request(100);
}
@Override
public void onNext(String item) {
System.out.println(this.getClass().getSimpleName()+" item "+item);
//subscription.request(1);
counter++;
}
@Override
public void onError(Throwable throwable) {
System.out.println(this.getClass().getName()+ " an error occured "+throwable);
}
@Override
public void onComplete() {
System.out.println("activity completed");
}
public int getCounter() {
return counter;
}
}
output:
Publishing Items to Subscriber
MySubscriber item name 1
MySubscriber item name 2
MySubscriber item name 3
MySubscriber item name 4
MySubscriber item name 5
Exiting the app
MySubscriber item name 6
MySubscriber item name 7
MySubscriber item name 8
MySubscriber item name 9
MySubscriber item name 10
MySubscriber item name 11
MySubscriber item name 12
java-9 subscription subscriber publisher
1
Looks related to Back-Pressure instead.
– nullpointer
Jan 2 at 18:21
add a comment |
I am trying to understand how Subscriber
and Publisher
works in java 9.
Here I have created one subscriber
here and using SubmissionPublisher
for publishing item .
I am trying to publish 100 strings to subscriber
. If I do not make the Client
program to sleep
(see commented code in MyReactiveApp
), I do not see all the items are published.
why is it not waiting for all the strings processed here:
strs.stream().forEach(i -> publisher.submit(i)); // what happens here?
If I replace the above code with, I see all the strings are printed in console
strs.stream().forEach(System.out::println);
Client program that publishes using SubmissionPublisher
.
import java.util.List;
import java.util.concurrent.SubmissionPublisher;
import java.util.function.Supplier;
import java.util.stream.Collectors;
import java.util.stream.Stream;
public class MyReactiveApp {
public static void main(String args) throws InterruptedException {
SubmissionPublisher<String> publisher = new SubmissionPublisher<>();
MySubscriber subs = new MySubscriber();
publisher.subscribe(subs);
List<String> strs = getStrs();
System.out.println("Publishing Items to Subscriber");
strs.stream().forEach(i -> publisher.submit(i));
/*while (strs.size() != subs.getCounter()) {
Thread.sleep(10);
}*/
//publisher.close();
System.out.println("Exiting the app");
}
private static List<String> getStrs(){
return Stream.generate(new Supplier<String>() {
int i =1;
@Override
public String get() {
return "name "+ (i++);
}
}).limit(100).collect(Collectors.toList());
}
}
Subscriber
import java.util.concurrent.Flow.Subscription;
public class MySubscriber implements java.util.concurrent.Flow.Subscriber<String>{
private Subscription subscription;
private int counter = 0;
@Override
public void onSubscribe(Subscription subscription) {
this.subscription = subscription;
subscription.request(100);
}
@Override
public void onNext(String item) {
System.out.println(this.getClass().getSimpleName()+" item "+item);
//subscription.request(1);
counter++;
}
@Override
public void onError(Throwable throwable) {
System.out.println(this.getClass().getName()+ " an error occured "+throwable);
}
@Override
public void onComplete() {
System.out.println("activity completed");
}
public int getCounter() {
return counter;
}
}
output:
Publishing Items to Subscriber
MySubscriber item name 1
MySubscriber item name 2
MySubscriber item name 3
MySubscriber item name 4
MySubscriber item name 5
Exiting the app
MySubscriber item name 6
MySubscriber item name 7
MySubscriber item name 8
MySubscriber item name 9
MySubscriber item name 10
MySubscriber item name 11
MySubscriber item name 12
java-9 subscription subscriber publisher
I am trying to understand how Subscriber
and Publisher
works in java 9.
Here I have created one subscriber
here and using SubmissionPublisher
for publishing item .
I am trying to publish 100 strings to subscriber
. If I do not make the Client
program to sleep
(see commented code in MyReactiveApp
), I do not see all the items are published.
why is it not waiting for all the strings processed here:
strs.stream().forEach(i -> publisher.submit(i)); // what happens here?
If I replace the above code with, I see all the strings are printed in console
strs.stream().forEach(System.out::println);
Client program that publishes using SubmissionPublisher
.
import java.util.List;
import java.util.concurrent.SubmissionPublisher;
import java.util.function.Supplier;
import java.util.stream.Collectors;
import java.util.stream.Stream;
public class MyReactiveApp {
public static void main(String args) throws InterruptedException {
SubmissionPublisher<String> publisher = new SubmissionPublisher<>();
MySubscriber subs = new MySubscriber();
publisher.subscribe(subs);
List<String> strs = getStrs();
System.out.println("Publishing Items to Subscriber");
strs.stream().forEach(i -> publisher.submit(i));
/*while (strs.size() != subs.getCounter()) {
Thread.sleep(10);
}*/
//publisher.close();
System.out.println("Exiting the app");
}
private static List<String> getStrs(){
return Stream.generate(new Supplier<String>() {
int i =1;
@Override
public String get() {
return "name "+ (i++);
}
}).limit(100).collect(Collectors.toList());
}
}
Subscriber
import java.util.concurrent.Flow.Subscription;
public class MySubscriber implements java.util.concurrent.Flow.Subscriber<String>{
private Subscription subscription;
private int counter = 0;
@Override
public void onSubscribe(Subscription subscription) {
this.subscription = subscription;
subscription.request(100);
}
@Override
public void onNext(String item) {
System.out.println(this.getClass().getSimpleName()+" item "+item);
//subscription.request(1);
counter++;
}
@Override
public void onError(Throwable throwable) {
System.out.println(this.getClass().getName()+ " an error occured "+throwable);
}
@Override
public void onComplete() {
System.out.println("activity completed");
}
public int getCounter() {
return counter;
}
}
output:
Publishing Items to Subscriber
MySubscriber item name 1
MySubscriber item name 2
MySubscriber item name 3
MySubscriber item name 4
MySubscriber item name 5
Exiting the app
MySubscriber item name 6
MySubscriber item name 7
MySubscriber item name 8
MySubscriber item name 9
MySubscriber item name 10
MySubscriber item name 11
MySubscriber item name 12
java-9 subscription subscriber publisher
java-9 subscription subscriber publisher
asked Dec 5 '18 at 12:41


secret super starsecret super star
1,025115
1,025115
1
Looks related to Back-Pressure instead.
– nullpointer
Jan 2 at 18:21
add a comment |
1
Looks related to Back-Pressure instead.
– nullpointer
Jan 2 at 18:21
1
1
Looks related to Back-Pressure instead.
– nullpointer
Jan 2 at 18:21
Looks related to Back-Pressure instead.
– nullpointer
Jan 2 at 18:21
add a comment |
1 Answer
1
active
oldest
votes
SubmissionPublisher<String> publisher = new SubmissionPublisher<>();
Creates a new SubmissionPublisher using the ForkJoinPool.commonPool() for async delivery to subscribers
see: https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/SubmissionPublisher.html#SubmissionPublisher--
So actually
strs.stream().forEach(i -> publisher.submit(i));
enqueues all submissions and delivers them asynchronously on another thread. But then the application is terminated. This is independent of the progress of the worker thread. This means that the application is terminated regardless of how many elements the worker thread has already delivered.
This can be different for each run. In the worst case, the application could be terminated before the first item is delivered.
Threads
If you want to verify that the main method of MyReactiveApp and the delivery in MySubscriber's onNext happen on different threads you can print out the names of the corresponding threads, e.g. in MyReactiveApp's main:
System.out.println(Thread.currentThread().getName())
will output main
as thread name.
Whereas MySubscriber's onNext method will e.g. output something like ForkJoinPool.commonPool-worker-1
.
User and Deamon Threads
Why does the application terminate although we still have a running thread?
There are two kind of threads in Java:
- user threads
- daemon threads
A Java program terminates when no longer any user threads are running, even when deamon threads are still running.
The main thread is a user thread. The SubmissionPublisher uses here worker threads from ForkJoinPool.commonPool(). These are daemon threads.
All worker threads are initialized with Thread.isDaemon() set true.
https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/ForkJoinPool.html
Thanks for answer, but can you please through some more light on enqueues all submissions and delivers them asynchronously on another thread .. are you referring topublisher.submit
? As I was aware the created threads can be running after the main thread exits.
– secret super star
Jan 2 at 4:48
I've added infos about user and worker threads to the answer.
– Stephan Schlecht
Jan 2 at 16:40
Thanks, You have provided details needed to me. accepting as answer.
– secret super star
Jan 2 at 17:19
After your answer, I have tried with fork join and found the similar behaviour. But I was wondering threads submitted to fork-join pool were not completed if the mail thread exits. see if you add details of it if you find them relevant here..
– secret super star
Jan 2 at 17:22
I'm not sure I understood the question. Are you saying that you are creating your own thread factory by implementing thenewThread
method of ForkJoinWorkerThreadFactory and delivering user threads? And why aren't these threads finished? Or is the question different?
– Stephan Schlecht
Jan 2 at 21:11
|
show 1 more comment
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53632600%2fjava-9-how-publisher-and-subscriber-works%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
SubmissionPublisher<String> publisher = new SubmissionPublisher<>();
Creates a new SubmissionPublisher using the ForkJoinPool.commonPool() for async delivery to subscribers
see: https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/SubmissionPublisher.html#SubmissionPublisher--
So actually
strs.stream().forEach(i -> publisher.submit(i));
enqueues all submissions and delivers them asynchronously on another thread. But then the application is terminated. This is independent of the progress of the worker thread. This means that the application is terminated regardless of how many elements the worker thread has already delivered.
This can be different for each run. In the worst case, the application could be terminated before the first item is delivered.
Threads
If you want to verify that the main method of MyReactiveApp and the delivery in MySubscriber's onNext happen on different threads you can print out the names of the corresponding threads, e.g. in MyReactiveApp's main:
System.out.println(Thread.currentThread().getName())
will output main
as thread name.
Whereas MySubscriber's onNext method will e.g. output something like ForkJoinPool.commonPool-worker-1
.
User and Deamon Threads
Why does the application terminate although we still have a running thread?
There are two kind of threads in Java:
- user threads
- daemon threads
A Java program terminates when no longer any user threads are running, even when deamon threads are still running.
The main thread is a user thread. The SubmissionPublisher uses here worker threads from ForkJoinPool.commonPool(). These are daemon threads.
All worker threads are initialized with Thread.isDaemon() set true.
https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/ForkJoinPool.html
Thanks for answer, but can you please through some more light on enqueues all submissions and delivers them asynchronously on another thread .. are you referring topublisher.submit
? As I was aware the created threads can be running after the main thread exits.
– secret super star
Jan 2 at 4:48
I've added infos about user and worker threads to the answer.
– Stephan Schlecht
Jan 2 at 16:40
Thanks, You have provided details needed to me. accepting as answer.
– secret super star
Jan 2 at 17:19
After your answer, I have tried with fork join and found the similar behaviour. But I was wondering threads submitted to fork-join pool were not completed if the mail thread exits. see if you add details of it if you find them relevant here..
– secret super star
Jan 2 at 17:22
I'm not sure I understood the question. Are you saying that you are creating your own thread factory by implementing thenewThread
method of ForkJoinWorkerThreadFactory and delivering user threads? And why aren't these threads finished? Or is the question different?
– Stephan Schlecht
Jan 2 at 21:11
|
show 1 more comment
SubmissionPublisher<String> publisher = new SubmissionPublisher<>();
Creates a new SubmissionPublisher using the ForkJoinPool.commonPool() for async delivery to subscribers
see: https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/SubmissionPublisher.html#SubmissionPublisher--
So actually
strs.stream().forEach(i -> publisher.submit(i));
enqueues all submissions and delivers them asynchronously on another thread. But then the application is terminated. This is independent of the progress of the worker thread. This means that the application is terminated regardless of how many elements the worker thread has already delivered.
This can be different for each run. In the worst case, the application could be terminated before the first item is delivered.
Threads
If you want to verify that the main method of MyReactiveApp and the delivery in MySubscriber's onNext happen on different threads you can print out the names of the corresponding threads, e.g. in MyReactiveApp's main:
System.out.println(Thread.currentThread().getName())
will output main
as thread name.
Whereas MySubscriber's onNext method will e.g. output something like ForkJoinPool.commonPool-worker-1
.
User and Deamon Threads
Why does the application terminate although we still have a running thread?
There are two kind of threads in Java:
- user threads
- daemon threads
A Java program terminates when no longer any user threads are running, even when deamon threads are still running.
The main thread is a user thread. The SubmissionPublisher uses here worker threads from ForkJoinPool.commonPool(). These are daemon threads.
All worker threads are initialized with Thread.isDaemon() set true.
https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/ForkJoinPool.html
Thanks for answer, but can you please through some more light on enqueues all submissions and delivers them asynchronously on another thread .. are you referring topublisher.submit
? As I was aware the created threads can be running after the main thread exits.
– secret super star
Jan 2 at 4:48
I've added infos about user and worker threads to the answer.
– Stephan Schlecht
Jan 2 at 16:40
Thanks, You have provided details needed to me. accepting as answer.
– secret super star
Jan 2 at 17:19
After your answer, I have tried with fork join and found the similar behaviour. But I was wondering threads submitted to fork-join pool were not completed if the mail thread exits. see if you add details of it if you find them relevant here..
– secret super star
Jan 2 at 17:22
I'm not sure I understood the question. Are you saying that you are creating your own thread factory by implementing thenewThread
method of ForkJoinWorkerThreadFactory and delivering user threads? And why aren't these threads finished? Or is the question different?
– Stephan Schlecht
Jan 2 at 21:11
|
show 1 more comment
SubmissionPublisher<String> publisher = new SubmissionPublisher<>();
Creates a new SubmissionPublisher using the ForkJoinPool.commonPool() for async delivery to subscribers
see: https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/SubmissionPublisher.html#SubmissionPublisher--
So actually
strs.stream().forEach(i -> publisher.submit(i));
enqueues all submissions and delivers them asynchronously on another thread. But then the application is terminated. This is independent of the progress of the worker thread. This means that the application is terminated regardless of how many elements the worker thread has already delivered.
This can be different for each run. In the worst case, the application could be terminated before the first item is delivered.
Threads
If you want to verify that the main method of MyReactiveApp and the delivery in MySubscriber's onNext happen on different threads you can print out the names of the corresponding threads, e.g. in MyReactiveApp's main:
System.out.println(Thread.currentThread().getName())
will output main
as thread name.
Whereas MySubscriber's onNext method will e.g. output something like ForkJoinPool.commonPool-worker-1
.
User and Deamon Threads
Why does the application terminate although we still have a running thread?
There are two kind of threads in Java:
- user threads
- daemon threads
A Java program terminates when no longer any user threads are running, even when deamon threads are still running.
The main thread is a user thread. The SubmissionPublisher uses here worker threads from ForkJoinPool.commonPool(). These are daemon threads.
All worker threads are initialized with Thread.isDaemon() set true.
https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/ForkJoinPool.html
SubmissionPublisher<String> publisher = new SubmissionPublisher<>();
Creates a new SubmissionPublisher using the ForkJoinPool.commonPool() for async delivery to subscribers
see: https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/SubmissionPublisher.html#SubmissionPublisher--
So actually
strs.stream().forEach(i -> publisher.submit(i));
enqueues all submissions and delivers them asynchronously on another thread. But then the application is terminated. This is independent of the progress of the worker thread. This means that the application is terminated regardless of how many elements the worker thread has already delivered.
This can be different for each run. In the worst case, the application could be terminated before the first item is delivered.
Threads
If you want to verify that the main method of MyReactiveApp and the delivery in MySubscriber's onNext happen on different threads you can print out the names of the corresponding threads, e.g. in MyReactiveApp's main:
System.out.println(Thread.currentThread().getName())
will output main
as thread name.
Whereas MySubscriber's onNext method will e.g. output something like ForkJoinPool.commonPool-worker-1
.
User and Deamon Threads
Why does the application terminate although we still have a running thread?
There are two kind of threads in Java:
- user threads
- daemon threads
A Java program terminates when no longer any user threads are running, even when deamon threads are still running.
The main thread is a user thread. The SubmissionPublisher uses here worker threads from ForkJoinPool.commonPool(). These are daemon threads.
All worker threads are initialized with Thread.isDaemon() set true.
https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/ForkJoinPool.html
edited Jan 2 at 10:45
answered Jan 1 at 22:28
Stephan SchlechtStephan Schlecht
4,9951911
4,9951911
Thanks for answer, but can you please through some more light on enqueues all submissions and delivers them asynchronously on another thread .. are you referring topublisher.submit
? As I was aware the created threads can be running after the main thread exits.
– secret super star
Jan 2 at 4:48
I've added infos about user and worker threads to the answer.
– Stephan Schlecht
Jan 2 at 16:40
Thanks, You have provided details needed to me. accepting as answer.
– secret super star
Jan 2 at 17:19
After your answer, I have tried with fork join and found the similar behaviour. But I was wondering threads submitted to fork-join pool were not completed if the mail thread exits. see if you add details of it if you find them relevant here..
– secret super star
Jan 2 at 17:22
I'm not sure I understood the question. Are you saying that you are creating your own thread factory by implementing thenewThread
method of ForkJoinWorkerThreadFactory and delivering user threads? And why aren't these threads finished? Or is the question different?
– Stephan Schlecht
Jan 2 at 21:11
|
show 1 more comment
Thanks for answer, but can you please through some more light on enqueues all submissions and delivers them asynchronously on another thread .. are you referring topublisher.submit
? As I was aware the created threads can be running after the main thread exits.
– secret super star
Jan 2 at 4:48
I've added infos about user and worker threads to the answer.
– Stephan Schlecht
Jan 2 at 16:40
Thanks, You have provided details needed to me. accepting as answer.
– secret super star
Jan 2 at 17:19
After your answer, I have tried with fork join and found the similar behaviour. But I was wondering threads submitted to fork-join pool were not completed if the mail thread exits. see if you add details of it if you find them relevant here..
– secret super star
Jan 2 at 17:22
I'm not sure I understood the question. Are you saying that you are creating your own thread factory by implementing thenewThread
method of ForkJoinWorkerThreadFactory and delivering user threads? And why aren't these threads finished? Or is the question different?
– Stephan Schlecht
Jan 2 at 21:11
Thanks for answer, but can you please through some more light on enqueues all submissions and delivers them asynchronously on another thread .. are you referring to
publisher.submit
? As I was aware the created threads can be running after the main thread exits.– secret super star
Jan 2 at 4:48
Thanks for answer, but can you please through some more light on enqueues all submissions and delivers them asynchronously on another thread .. are you referring to
publisher.submit
? As I was aware the created threads can be running after the main thread exits.– secret super star
Jan 2 at 4:48
I've added infos about user and worker threads to the answer.
– Stephan Schlecht
Jan 2 at 16:40
I've added infos about user and worker threads to the answer.
– Stephan Schlecht
Jan 2 at 16:40
Thanks, You have provided details needed to me. accepting as answer.
– secret super star
Jan 2 at 17:19
Thanks, You have provided details needed to me. accepting as answer.
– secret super star
Jan 2 at 17:19
After your answer, I have tried with fork join and found the similar behaviour. But I was wondering threads submitted to fork-join pool were not completed if the mail thread exits. see if you add details of it if you find them relevant here..
– secret super star
Jan 2 at 17:22
After your answer, I have tried with fork join and found the similar behaviour. But I was wondering threads submitted to fork-join pool were not completed if the mail thread exits. see if you add details of it if you find them relevant here..
– secret super star
Jan 2 at 17:22
I'm not sure I understood the question. Are you saying that you are creating your own thread factory by implementing the
newThread
method of ForkJoinWorkerThreadFactory and delivering user threads? And why aren't these threads finished? Or is the question different?– Stephan Schlecht
Jan 2 at 21:11
I'm not sure I understood the question. Are you saying that you are creating your own thread factory by implementing the
newThread
method of ForkJoinWorkerThreadFactory and delivering user threads? And why aren't these threads finished? Or is the question different?– Stephan Schlecht
Jan 2 at 21:11
|
show 1 more comment
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53632600%2fjava-9-how-publisher-and-subscriber-works%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Looks related to Back-Pressure instead.
– nullpointer
Jan 2 at 18:21