diff options
| author | Ted Ross <tross@apache.org> | 2011-01-11 17:58:04 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2011-01-11 17:58:04 +0000 |
| commit | d110a0992506d80cd29b07ba9de7c993c548e155 (patch) | |
| tree | 07a3cd6efff4123c6e0b62e9cf99cb92967a14b0 /cpp/bindings/qmf2/python | |
| parent | 808bdabbd928bc41eeeeece1cd2c05eb7c507a52 (diff) | |
| download | qpid-python-d110a0992506d80cd29b07ba9de7c993c548e155.tar.gz | |
Exposed asMap for DataAddr objects in Pyton and Ruby wrappers.
Enhanced the examples to show the passing of a DataAddr in an argument.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1057774 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/bindings/qmf2/python')
| -rw-r--r-- | cpp/bindings/qmf2/python/qmf2.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cpp/bindings/qmf2/python/qmf2.py b/cpp/bindings/qmf2/python/qmf2.py index 911b080dfd..37efb8708b 100644 --- a/cpp/bindings/qmf2/python/qmf2.py +++ b/cpp/bindings/qmf2/python/qmf2.py @@ -533,6 +533,11 @@ class DataAddr(object): self.getName() == other.getName() and \ self.getAgentEpoch() == other.getAgentEpoch() + def asMap(self): + """ + """ + return self._impl.asMap() + def getAgentName(self): """ """ |
