1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
// This file is part of CAF, the C++ Actor Framework. See the file LICENSE in
// the main distribution directory for license terms and copyright or visit
// https://github.com/actor-framework/actor-framework/blob/master/LICENSE.
#pragma once
#include <memory>
#include "caf/detail/core_export.hpp"
#include "caf/fwd.hpp"
namespace caf {
/// Marker interface for application-specific tracing data. This interface
/// enables users to inject application-specific instrumentation into CAF's
/// messaging layer. CAF provides no default implementation for this
/// customization point.
class CAF_CORE_EXPORT tracing_data {
public:
virtual ~tracing_data();
/// Writes the content of this object to `sink`.
virtual bool serialize(serializer& sink) const = 0;
/// @copydoc serialize
virtual bool serialize(binary_serializer& sink) const = 0;
};
/// @relates tracing_data
using tracing_data_ptr = std::unique_ptr<tracing_data>;
/// @relates tracing_data
CAF_CORE_EXPORT bool inspect(serializer& sink, const tracing_data_ptr& x);
/// @relates tracing_data
CAF_CORE_EXPORT bool inspect(binary_serializer& sink,
const tracing_data_ptr& x);
/// @relates tracing_data
CAF_CORE_EXPORT bool inspect(deserializer& source, tracing_data_ptr& x);
/// @relates tracing_data
CAF_CORE_EXPORT bool inspect(binary_deserializer& source, tracing_data_ptr& x);
} // namespace caf
|