beegfs/storage/source/net/message/nodes/GetClientStatsMsgEx.h
2025-08-10 01:34:16 +02:00

16 lines
400 B
C++

#pragma once
#include <common/storage/StorageErrors.h>
#include <common/net/message/nodes/GetClientStatsMsg.h>
// NOTE: The message factory requires this object to have 'deserialize' and
// 'processIncoming' methods. 'deserialize' is derived from other classes.
class GetClientStatsMsgEx : public GetClientStatsMsg
{
public:
virtual bool processIncoming(ResponseContext& ctx);
};