-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Start sending appropriate error message to the clients, if the broker…
… mapping is not configured for particular vhost
- Loading branch information
1 parent
c557d12
commit 5412802
Showing
16 changed files
with
482 additions
and
358 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* | ||
** Copyright 2022 Bloomberg Finance L.P. | ||
** | ||
** Licensed under the Apache License, Version 2.0 (the "License"); | ||
** you may not use this file except in compliance with the License. | ||
** You may obtain a copy of the License at | ||
** | ||
** http://www.apache.org/licenses/LICENSE-2.0 | ||
** | ||
** Unless required by applicable law or agreed to in writing, software | ||
** distributed under the License is distributed on an "AS IS" BASIS, | ||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
** See the License for the specific language governing permissions and | ||
** limitations under the License. | ||
*/ | ||
#include <amqpprox_connectionselectorinterface.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* | ||
** Copyright 2022 Bloomberg Finance L.P. | ||
** | ||
** Licensed under the Apache License, Version 2.0 (the "License"); | ||
** you may not use this file except in compliance with the License. | ||
** You may obtain a copy of the License at | ||
** | ||
** http://www.apache.org/licenses/LICENSE-2.0 | ||
** | ||
** Unless required by applicable law or agreed to in writing, software | ||
** distributed under the License is distributed on an "AS IS" BASIS, | ||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
** See the License for the specific language governing permissions and | ||
** limitations under the License. | ||
*/ | ||
#ifndef BLOOMBERG_AMQPPROX_CONNECTIONSELECTORINTERFACE | ||
#define BLOOMBERG_AMQPPROX_CONNECTIONSELECTORINTERFACE | ||
|
||
#include <amqpprox_sessionstate.h> | ||
|
||
#include <memory> | ||
|
||
namespace Bloomberg { | ||
namespace amqpprox { | ||
|
||
class ConnectionManager; | ||
class SessionState; | ||
|
||
/** | ||
* \brief Represents a connection selector interface | ||
*/ | ||
class ConnectionSelectorInterface { | ||
public: | ||
virtual ~ConnectionSelectorInterface() = default; | ||
|
||
/** | ||
* \brief Acquire a connection from the specified session `state` and set | ||
* `connectionOut` to be a `ConnectionManager` instance tracking the | ||
* connection attempt | ||
* \return connection status to represent whether the connection should go | ||
* through | ||
*/ | ||
virtual SessionState::ConnectionStatus | ||
acquireConnection(std::shared_ptr<ConnectionManager> *connectionOut, | ||
const SessionState &state) = 0; | ||
}; | ||
|
||
} | ||
} | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.