diff options
author | Ted Ross <tross@apache.org> | 2009-09-21 16:24:38 +0000 |
---|---|---|
committer | Ted Ross <tross@apache.org> | 2009-09-21 16:24:38 +0000 |
commit | ffe7d369e3a2c2304743b6a54ff3d4fb6f95a056 (patch) | |
tree | 92fff5c50fed2fce3c1bd45f4d7dae98b7052a41 /qpid/cpp/src/qmf/ObjectImpl.h | |
parent | e4dc41ed4d12c81a9683d69f6328b2de63c9288f (diff) | |
download | qpid-python-ffe7d369e3a2c2304743b6a54ff3d4fb6f95a056.tar.gz |
Added Ruby test infrastructure and Console tests in Ruby
Fixed issues identified by the new tests:
- Improper formatting of object-id in get-query
- Remote (non-broker-resident) agents not visible to the console
- object.update() and object.merge() not implemented
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@817312 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/qmf/ObjectImpl.h')
-rw-r--r-- | qpid/cpp/src/qmf/ObjectImpl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qpid/cpp/src/qmf/ObjectImpl.h b/qpid/cpp/src/qmf/ObjectImpl.h index 565e9a2704..0776aab8fa 100644 --- a/qpid/cpp/src/qmf/ObjectImpl.h +++ b/qpid/cpp/src/qmf/ObjectImpl.h @@ -59,6 +59,8 @@ namespace qmf { const SchemaObjectClass* getClass() const { return objectClass; } Value* getValue(const std::string& key) const; void invokeMethod(const std::string& methodName, const Value* inArgs, void* context) const; + bool isDeleted() const { return destroyTime != 0; } + void merge(const Object& from); void parsePresenceMasks(qpid::framing::Buffer& buffer, std::set<std::string>& excludeList); void encodeSchemaKey(qpid::framing::Buffer& buffer) const; |