mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-24 22:24:44 +02:00
parent
0ac6e97f32
commit
a0c0930325
@ -67,7 +67,7 @@ ConnectionRole ApiClient::GetRole(void) const
|
|||||||
void ApiClient::SendMessage(const Dictionary::Ptr& message)
|
void ApiClient::SendMessage(const Dictionary::Ptr& message)
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
ObjectLock olock(m_Stream);
|
boost::mutex::scoped_lock lock(m_WriteMutex);
|
||||||
JsonRpc::SendMessage(m_Stream, message);
|
JsonRpc::SendMessage(m_Stream, message);
|
||||||
if (message->Get("method") != "log::SetLogPosition")
|
if (message->Get("method") != "log::SetLogPosition")
|
||||||
m_Seen = Utility::GetTime();
|
m_Seen = Utility::GetTime();
|
||||||
|
@ -58,6 +58,7 @@ public:
|
|||||||
void SendMessage(const Dictionary::Ptr& request);
|
void SendMessage(const Dictionary::Ptr& request);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
boost::mutex m_WriteMutex;
|
||||||
String m_Identity;
|
String m_Identity;
|
||||||
Endpoint::Ptr m_Endpoint;
|
Endpoint::Ptr m_Endpoint;
|
||||||
Stream::Ptr m_Stream;
|
Stream::Ptr m_Stream;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user