blob: faeeb70a2d9a5ca06fd435ce1bb313ced9b91323 (
plain)
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
|
/* -*- c++ -*- */
/*
* Copyright 2009,2013 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifndef INCLUDED_MSG_ACCEPTER_H
#define INCLUDED_MSG_ACCEPTER_H
#include <gnuradio/api.h>
#include <pmt/pmt.h>
#include <memory>
namespace gr {
namespace messages {
/*!
* \brief Virtual base class that accepts messages
*/
class GR_RUNTIME_API msg_accepter
{
public:
msg_accepter(){};
virtual ~msg_accepter();
/*!
* \brief send \p msg to \p msg_accepter on port \p which_port
*
* Sending a message is an asynchronous operation. The \p post
* call will not wait for the message either to arrive at the
* destination or to be received.
*/
virtual void post(pmt::pmt_t which_port, pmt::pmt_t msg) = 0;
};
typedef std::shared_ptr<msg_accepter> msg_accepter_sptr;
} /* namespace messages */
} /* namespace gr */
#endif /* INCLUDED_MSG_ACCEPTER_H */
|