Apache Qpid - AMQP Messaging for Java JMS, C++, Python, Ruby, and .NET
Apache Qpid Documentation
Main Page
Modules
Namespaces
Classes
Files
File List
File Members
qmf
AgentEvent.h
Go to the documentation of this file.
1
#ifndef QMF_AGENT_EVENT_H
2
#define QMF_AGENT_EVENT_H
3
/*
4
*
5
* Licensed to the Apache Software Foundation (ASF) under one
6
* or more contributor license agreements. See the NOTICE file
7
* distributed with this work for additional information
8
* regarding copyright ownership. The ASF licenses this file
9
* to you under the Apache License, Version 2.0 (the
10
* "License"); you may not use this file except in compliance
11
* with the License. You may obtain a copy of the License at
12
*
13
* http://www.apache.org/licenses/LICENSE-2.0
14
*
15
* Unless required by applicable law or agreed to in writing,
16
* software distributed under the License is distributed on an
17
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
18
* KIND, either express or implied. See the License for the
19
* specific language governing permissions and limitations
20
* under the License.
21
*
22
*/
23
24
#if !defined(QMF_USE_DEPRECATED_API) && !defined(qmf2_EXPORTS) && !defined(SWIG)
25
# error "The API defined in this file has been DEPRECATED and will be removed in the future."
26
# error "Define 'QMF_USE_DEPRECATED_API' to enable continued use of the API."
27
#endif
28
29
#include <
qmf/ImportExport.h
>
30
#include "
qmf/Handle.h
"
31
#include "
qpid/types/Variant.h
"
32
33
namespace
qmf {
34
35
#ifndef SWIG
36
template
<
class
>
class
PrivateImplRef;
37
#endif
38
39
class
AgentEventImpl;
40
class
Query;
41
class
DataAddr;
42
43
enum
AgentEventCode
{
44
AGENT_AUTH_QUERY
= 1,
45
AGENT_AUTH_SUBSCRIBE
= 2,
46
AGENT_QUERY
= 3,
47
AGENT_METHOD
= 4,
48
AGENT_SUBSCRIBE_BEGIN
= 5,
49
AGENT_SUBSCRIBE_TOUCH
= 6,
50
AGENT_SUBSCRIBE_END
= 7,
51
AGENT_THREAD_FAILED
= 8
52
};
53
54
class
QMF_CLASS_EXTERN
AgentEvent
:
public
qmf::Handle
<AgentEventImpl> {
55
public
:
56
QMF_EXTERN
AgentEvent
(AgentEventImpl* impl = 0);
57
QMF_EXTERN
AgentEvent(
const
AgentEvent&);
58
QMF_EXTERN
AgentEvent& operator=(
const
AgentEvent&);
59
QMF_EXTERN
~AgentEvent();
60
61
QMF_EXTERN
AgentEventCode
getType()
const
;
62
QMF_EXTERN
const
std::string& getUserId()
const
;
63
QMF_EXTERN
Query
getQuery()
const
;
64
QMF_EXTERN
bool
hasDataAddr()
const
;
65
QMF_EXTERN
DataAddr
getDataAddr()
const
;
66
QMF_EXTERN
const
std::string& getMethodName()
const
;
67
QMF_EXTERN
qpid::types::Variant::Map
& getArguments();
68
QMF_EXTERN
qpid::types::Variant::Map
& getArgumentSubtypes();
69
QMF_EXTERN
void
addReturnArgument(
const
std::string&,
const
qpid::types::Variant
&,
const
std::string& st=
""
);
70
71
#ifndef SWIG
72
private
:
73
friend
class
qmf::PrivateImplRef
<AgentEvent>;
74
friend
struct
AgentEventImplAccess;
75
#endif
76
};
77
}
78
79
#endif
Qpid C++ API Reference
Generated on Wed Jul 16 2014 for Qpid C++ Client API by
1.8.3.1