Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add async stop notification API to DefaultMessageListenerContainer [SPR-4414] #9092

Closed
spring-projects-issues opened this issue Feb 1, 2008 · 1 comment
Assignees
Labels
in: messaging Issues in messaging modules (jms, messaging) type: enhancement A general enhancement
Milestone

Comments

@spring-projects-issues
Copy link
Collaborator

spring-projects-issues commented Feb 1, 2008

Ben Rowlands opened SPR-4414 and commented

DMLC has 2 options to quiesce the containers threads.

  • Stop(): notifies the threads to stop
  • Shutdown(): notifies the threads to stop and then waits for all the threads to stop.

We need to wait for all the threads to stop so we can then shutdown dependent components in the application (we don't want to shut these down until all message processing is complete). So we used shutdown(), however after shutdown the container can't be re-started!. So we use stop() but then we don't know when the stop is complete.

A simple option would be adding a stopAndWait() API that would block the calling thread until the containers threads are stopped. But we'd like to stop all our containers (we may have >10 in the application) concurrently. A nice way to do this is to give a callback to stop() to be invoked on completion.

// notifies the containers threads to stop, invokes the callback when all threads are done.
void stop( CompletionCallback completionCallback )

Where CompletionCallback is (could use Runnable?):

interface CompletionCallback
{
public void complete();
}

We can then await stopping something like:

final CountDownLatch latch = new CountDownLatch( containers.size )
CompletionCallback callback = new CompletionCallback() {
void complete() { latch.countDown(); }
};

for( DMLC container : containers ) {
container.stop( callback );
}

latch.await();

If this API doesn't seem generally useful would it be possible to provide a subclass hook to allow this as the monitor & counters are not visible (looks like something that could be easily refactored out of doShutdown()).

Thanks


Affects: 2.5.1

Issue Links:

@spring-projects-issues
Copy link
Collaborator Author

Juergen Hoeller commented

Thanks for the suggestion! I've added a corresponding stop(Runnable) method to DefaultMessageListenerContainer, with that Runnable invoked asynchronously by the invoker thread that eventually lowers the active invoker count to 0.

Juergen

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
in: messaging Issues in messaging modules (jms, messaging) type: enhancement A general enhancement
Projects
None yet
Development

No branches or pull requests

2 participants