Skip to content

What is the recommended way to shutdown a queue and await completion? #790

@jeacott1

Description

@jeacott1

if I have a queue:

		final QueueBuilder queueBuilder = QueueBuilder.queueBuilder();

		queue = queueBuilder.setArrayBlockingQueue().setBatchSize(1000).setLimit(50)
				.setCheckEvery(5).setCheckIfBusy(false)
				.setName("Bridge Queue").setPollTimeUnit(TimeUnit.MILLISECONDS)
				.setPollWait(50).build();

		receiveQueue = queue.receiveQueue();
		sendQueue = queue.sendQueue();

calling queue.stop() looks like it will just exit processing, without first shutting down the sendQueue and allowing the receiveQueue to finish processing.

the internal queue and hence peek method is not available, so how is it intended that I can effect something like a queue.shutdownAwaitCompletion(timeout) ?

thanks.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions