mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-13 16:46:47 +00:00
feat!: Remove deprecated state-to-str conversion helpers
BREAKING CHANGE
This commit is contained in:
parent
c03edf94b0
commit
a8a10eac59
|
@ -583,18 +583,6 @@ class Device
|
||||||
/// @brief Returns the name of the current state as a string
|
/// @brief Returns the name of the current state as a string
|
||||||
std::string GetCurrentStateName() const { return fStateMachine.GetCurrentStateName(); }
|
std::string GetCurrentStateName() const { return fStateMachine.GetCurrentStateName(); }
|
||||||
|
|
||||||
/// @brief Returns name of the given state as a string
|
|
||||||
/// @param state state
|
|
||||||
[[deprecated("Use fair::mq::GetStateName from <fairmq/States.h> directly")]]
|
|
||||||
static std::string GetStateName(State state) { return fair::mq::GetStateName(state); }
|
|
||||||
/// @brief Returns name of the given transition as a string
|
|
||||||
/// @param transition transition
|
|
||||||
[[deprecated("Use fair::mq::GetTransitionName from <fairmq/States.h> directly")]]
|
|
||||||
static std::string GetTransitionName(Transition transition)
|
|
||||||
{
|
|
||||||
return fair::mq::GetTransitionName(transition);
|
|
||||||
}
|
|
||||||
|
|
||||||
static constexpr const char* DefaultId = "";
|
static constexpr const char* DefaultId = "";
|
||||||
static constexpr int DefaultIOThreads = 1;
|
static constexpr int DefaultIOThreads = 1;
|
||||||
static constexpr const char* DefaultTransportName = "zeromq";
|
static constexpr const char* DefaultTransportName = "zeromq";
|
||||||
|
|
Loading…
Reference in New Issue
Block a user