Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/groups/mqb/mqbblp/mqbblp_cluster.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2640,7 +2640,7 @@ void Cluster::configureQueue(
callback);
}

void Cluster::configureQueue(
void Cluster::closeQueue(
mqbi::Queue* queue,
const bmqp_ctrlmsg::QueueHandleParameters& handleParameters,
unsigned int upstreamSubQueueId,
Expand All @@ -2651,10 +2651,10 @@ void Cluster::configureQueue(
// PRECONDITIONS
BSLS_ASSERT_SAFE(dispatcher()->inDispatcherThread(queue));

d_clusterOrchestrator.queueHelper().configureQueue(queue,
handleParameters,
upstreamSubQueueId,
callback);
d_clusterOrchestrator.queueHelper().closeQueue(queue,
handleParameters,
upstreamSubQueueId,
callback);
}

void Cluster::onQueueHandleCreated(mqbi::Queue* queue,
Expand Down
8 changes: 4 additions & 4 deletions src/groups/mqb/mqbblp/mqbblp_cluster.h
Original file line number Diff line number Diff line change
Expand Up @@ -554,10 +554,10 @@ class Cluster : public mqbi::Cluster,
/// specified `queue` with the specified `handleParameters` and invoke
/// the specified `callback` when finished.
void
configureQueue(mqbi::Queue* queue,
const bmqp_ctrlmsg::QueueHandleParameters& handleParameters,
unsigned int upstreamSubQueueId,
const mqbi::Cluster::HandleReleasedCallback& callback)
closeQueue(mqbi::Queue* queue,
const bmqp_ctrlmsg::QueueHandleParameters& handleParameters,
unsigned int upstreamSubQueueId,
const mqbi::Cluster::HandleReleasedCallback& callback)
BSLS_KEYWORD_OVERRIDE;

/// Invoked whenever an attempt was made to create a queue handle for
Expand Down
10 changes: 5 additions & 5 deletions src/groups/mqb/mqbblp/mqbblp_clusterproxy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1153,7 +1153,7 @@ void ClusterProxy::configureQueue(
callback);
}

void ClusterProxy::configureQueue(
void ClusterProxy::closeQueue(
mqbi::Queue* queue,
const bmqp_ctrlmsg::QueueHandleParameters& handleParameters,
unsigned int upstreamSubQueueId,
Expand All @@ -1164,10 +1164,10 @@ void ClusterProxy::configureQueue(
// PRECONDITIONS
BSLS_ASSERT_SAFE(dispatcher()->inDispatcherThread(queue));

d_queueHelper.configureQueue(queue,
handleParameters,
upstreamSubQueueId,
callback);
d_queueHelper.closeQueue(queue,
handleParameters,
upstreamSubQueueId,
callback);
}

void ClusterProxy::onQueueHandleCreated(mqbi::Queue* queue,
Expand Down
8 changes: 4 additions & 4 deletions src/groups/mqb/mqbblp/mqbblp_clusterproxy.h
Original file line number Diff line number Diff line change
Expand Up @@ -469,10 +469,10 @@ class ClusterProxy : public mqbc::ClusterStateObserver,
/// specified `queue` with the specified `handleParameters` and invoke
/// the specified `callback` when finished.
void
configureQueue(mqbi::Queue* queue,
const bmqp_ctrlmsg::QueueHandleParameters& handleParameters,
unsigned int upstreamSubQueueId,
const mqbi::Cluster::HandleReleasedCallback& callback)
closeQueue(mqbi::Queue* queue,
const bmqp_ctrlmsg::QueueHandleParameters& handleParameters,
unsigned int upstreamSubQueueId,
const mqbi::Cluster::HandleReleasedCallback& callback)
BSLS_KEYWORD_OVERRIDE;

/// Invoked whenever an attempt was made to create a queue handle for
Expand Down
Loading
Loading