You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Setting "false" value of BROADCASTER_SHARABLE_THREAD_POOLS has no effect on Broadcaster Thread pools. I have 3 broadcasters and I dont want them to share the thread pool. The configuration value is either set from the default value of sharedThreadPools=true; // in AtmosphereFramework.java
or checked too late in the init function.
AtmosphereFramework init() {
...
...
String s = config.getInitParameter(ApplicationConfig.BROADCASTER_SHARABLE_THREAD_POOLS);
if (s != null) {
sharedThreadPools = Boolean.parseBoolean(s);
}
...
}
when the shared thread pools are already setup at the start of the same function
Setting "false" value of BROADCASTER_SHARABLE_THREAD_POOLS has no effect on Broadcaster Thread pools. I have 3 broadcasters and I dont want them to share the thread pool. The configuration value is either set from the default value of
sharedThreadPools=true; // in AtmosphereFramework.java
or checked too late in the init function.
when the shared thread pools are already setup at the start of the same function
Server config looks like this,
The text was updated successfully, but these errors were encountered: